X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/a54d9805ee1c46d574aab8e349fd778d3a4bc67b..271f08784264e25c3dbcd751f8c9ee1b1ad8306e:/src/cluster.c diff --git a/src/cluster.c b/src/cluster.c index 4e3cf746..d7e76ed4 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -994,7 +994,6 @@ int clusterNodeGetSlotBit(clusterNode *n, int slot) { int clusterAddSlot(clusterNode *n, int slot) { redisAssert(clusterNodeSetSlotBit(n,slot) == 0); server.cluster.slots[slot] = n; - printf("SLOT %d added to %.40s\n", slot, n->name); return REDIS_OK; }