From c4dbc7cdecd876635318aff409e4382780ba2b15 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 24 Oct 2014 10:38:42 +0200 Subject: [PATCH] Remove duplicated log message about starting BGSAVE. --- src/replication.c | 1 - 1 file changed, 1 deletion(-) 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"); -- GitLab