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
9e40bce3
"deps/vscode:/vscode.git/clone" did not exist on "27e29f4fe61d822eb23d948bcb72db76c4c887e5"
Commit
9e40bce3
authored
Jun 10, 2011
by
antirez
Browse files
different message on BGREWRITEAOF when it is just scheduled and not started.
parent
2c6cc5e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aof.c
View file @
9e40bce3
...
...
@@ -619,7 +619,7 @@ void bgrewriteaofCommand(redisClient *c) {
addReplyError
(
c
,
"Background append only file rewriting already in progress"
);
}
else
if
(
server
.
bgsavechildpid
!=
-
1
)
{
server
.
aofrewrite_scheduled
=
1
;
addReplyStatus
(
c
,
"Background append only file rewriting s
tart
ed"
);
addReplyStatus
(
c
,
"Background append only file rewriting s
chedul
ed"
);
}
else
if
(
rewriteAppendOnlyFileBackground
()
==
REDIS_OK
)
{
addReplyStatus
(
c
,
"Background append only file rewriting started"
);
}
else
{
...
...
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