summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-10-24 10:38:42 +0200
committerantirez <antirez@gmail.com>2014-10-24 10:38:42 +0200
commitc4dbc7cdecd876635318aff409e4382780ba2b15 (patch)
tree08a900477315a1aaa5323306ad17f3a341762946
parent18de5395b219bf407ac06dcf3baae48e4d36d1e5 (diff)
downloadredis-c4dbc7cdecd876635318aff409e4382780ba2b15.tar.gz
Remove duplicated log message about starting BGSAVE.
-rw-r--r--src/replication.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/replication.c b/src/replication.c
index fa5ed87d7..24b3455c8 100644
--- a/src/replication.c
+++ b/src/replication.c
@@ -531,7 +531,6 @@ void syncCommand(redisClient *c) {
redisLog(REDIS_NOTICE,"Delay next BGSAVE for SYNC");
} else {
/* Ok we don't have a BGSAVE in progress, let's start one. */
- redisLog(REDIS_NOTICE,"Starting BGSAVE for SYNC");
if (startBgsaveForReplication() != REDIS_OK) {
redisLog(REDIS_NOTICE,"Replication failed, can't BGSAVE");
addReplyError(c,"Unable to perform background save");