From 4159055f8349dcc2df0a77ee777e12ff332fcddb Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 10 Dec 2015 08:56:33 +0100 Subject: [PATCH] Remove debugging message left there for error. --- src/cluster.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 98e954ff..86a34578 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); }