summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-12-10 08:56:33 +0100
committerantirez <antirez@gmail.com>2015-12-10 08:56:33 +0100
commit4159055f8349dcc2df0a77ee777e12ff332fcddb (patch)
treeb7a1d3c1afd6f9c4c5953a770b01d688288f6f93
parent69897f5f30398f313497a695344aa9ed08919441 (diff)
downloadredis-4159055f8349dcc2df0a77ee777e12ff332fcddb.tar.gz
Remove debugging message left there for error.
-rw-r--r--src/cluster.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cluster.c b/src/cluster.c
index 98e954ffb..86a34578b 100644
--- a/src/cluster.c
+++ b/src/cluster.c
@@ -3268,7 +3268,6 @@ void clusterCron(void) {
* the orphaned masters. Note that it does not make sense to try
* a migration if there is no master with at least *two* working
* slaves. */
- if (orphaned_masters) serverLog(LL_WARNING,"0");
if (orphaned_masters && max_slaves >= 2 && this_slaves == max_slaves)
clusterHandleSlaveMigration(max_slaves);
}