Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
d0212210
Commit
d0212210
authored
Dec 29, 2010
by
antirez
Browse files
version set to 2.3.0
parent
5ef64098
Changes
2
Show whitespace changes
Inline
Side-by-side
src/diskstore.c
View file @
d0212210
...
...
@@ -97,7 +97,7 @@ int dsOpen(void) {
/* New disk store, create the directory structure now, as creating
* them in a lazy way is not a good idea, after very few insertions
* we'll need most of the 65536 directories anyway. */
if
(
mkdir
(
path
)
==
-
1
)
{
if
(
mkdir
(
path
,
0644
)
==
-
1
)
{
redisLog
(
REDIS_WARNING
,
"Disk store init failed creating dir %s: %s"
,
path
,
strerror
(
errno
));
return
REDIS_ERR
;
...
...
src/version.h
View file @
d0212210
#define REDIS_VERSION "2.
1.8
"
#define REDIS_VERSION "2.
3.0
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment