From 1aef29e0795681a3340a79c00379c246697bbcd6 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 16 Dec 2014 15:03:12 +0100 Subject: [PATCH] Fix comment in clusterHandleSlaveFailover(). --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 2dbd8a46..0ace10a2 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -2520,7 +2520,7 @@ void clusterHandleSlaveFailover(void) { /* Compute the failover timeout (the max time we have to send votes * and wait for replies), and the failover retry time (the time to wait - * before waiting again. + * before trying to get voted again). * * Timeout is MIN(NODE_TIMEOUT*2,2000) milliseconds. * Retry is two times the Timeout.