Commit 2c3301b9 authored by antirez's avatar antirez
Browse files

Cluster: log message improved when FAIL is cleared from a slave node.

parent 72f38cd7
......@@ -681,7 +681,7 @@ void clearNodeFailureIfNeeded(clusterNode *node) {
* node again. */
if (node->flags & REDIS_NODE_SLAVE) {
redisLog(REDIS_NOTICE,
"Clear FAIL state for node %.40s: slave is already reachable.",
"Clear FAIL state for node %.40s: slave is reachable again.",
node->name);
node->flags &= ~REDIS_NODE_FAIL;
clusterDoBeforeSleep(CLUSTER_TODO_UPDATE_STATE|CLUSTER_TODO_SAVE_CONFIG);
......
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