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
2882f819
Commit
2882f819
authored
Oct 24, 2014
by
antirez
Browse files
Remove duplicated log message about starting BGSAVE.
parent
52f8f4a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/replication.c
View file @
2882f819
...
...
@@ -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"
);
...
...
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