mirror of https://mirror.osredm.com/root/redis.git
different message on BGREWRITEAOF when it is just scheduled and not started.
This commit is contained in:
parent
2c6cc5e502
commit
9e40bce3fa
|
@ -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 started");
|
||||
addReplyStatus(c,"Background append only file rewriting scheduled");
|
||||
} else if (rewriteAppendOnlyFileBackground() == REDIS_OK) {
|
||||
addReplyStatus(c,"Background append only file rewriting started");
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue