Commit 2882f819 authored by antirez's avatar antirez
Browse files

Remove duplicated log message about starting BGSAVE.

parent 52f8f4a0
...@@ -531,7 +531,6 @@ void syncCommand(redisClient *c) { ...@@ -531,7 +531,6 @@ void syncCommand(redisClient *c) {
redisLog(REDIS_NOTICE,"Delay next BGSAVE for SYNC"); redisLog(REDIS_NOTICE,"Delay next BGSAVE for SYNC");
} else { } else {
/* Ok we don't have a BGSAVE in progress, let's start one. */ /* Ok we don't have a BGSAVE in progress, let's start one. */
redisLog(REDIS_NOTICE,"Starting BGSAVE for SYNC");
if (startBgsaveForReplication() != REDIS_OK) { if (startBgsaveForReplication() != REDIS_OK) {
redisLog(REDIS_NOTICE,"Replication failed, can't BGSAVE"); redisLog(REDIS_NOTICE,"Replication failed, can't BGSAVE");
addReplyError(c,"Unable to perform background save"); addReplyError(c,"Unable to perform background save");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment