summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-12-10 08:56:33 +0100
committerantirez <antirez@gmail.com>2015-12-10 09:30:22 +0100
commit6d5d8d10a9c52c48d5752fb74875324224871f73 (patch)
treeffb9c54527f899ad2dcf5fa5e995c811fbf54b3d
parent2e43bcffaf8b2b1e2694b144d387bea6c0aafac0 (diff)
downloadredis-6d5d8d10a9c52c48d5752fb74875324224871f73.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 7501d468d..5decfc968 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);
}