Commit f288b075 authored by antirez's avatar antirez
Browse files

Cluster: log the event when we clear the FAIL flag.

parent 97ffcd35
...@@ -569,6 +569,9 @@ void clearNodeFailureIfNeeded(clusterNode *node) { ...@@ -569,6 +569,9 @@ void clearNodeFailureIfNeeded(clusterNode *node) {
if (node->flags & REDIS_NODE_FAIL && !node->numslaves) { if (node->flags & REDIS_NODE_FAIL && !node->numslaves) {
node->flags &= ~REDIS_NODE_FAIL; node->flags &= ~REDIS_NODE_FAIL;
clusterUpdateState(); clusterUpdateState();
redisLog(REDIS_NOTICE,
"Clear FAIL state for node %.40s: is reachable and has no slaves.",
node->name);
} }
} }
......
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