From: antirez Date: Thu, 29 Sep 2011 13:26:01 +0000 (+0200) Subject: added comment about SETSLOT NODE form. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/3b5289a04c474ce66df2ef410e053795b1f0f1d2 added comment about SETSLOT NODE form. --- diff --git a/src/cluster.c b/src/cluster.c index 30b0946f..ed07a84f 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1240,9 +1240,10 @@ void clusterCommand(redisClient *c) { clusterSaveConfigOrDie(); addReply(c,shared.ok); } else if (!strcasecmp(c->argv[1]->ptr,"setslot") && c->argc >= 4) { - /* SETSLOT 10 MIGRATING */ - /* SETSLOT 10 IMPORTING */ + /* SETSLOT 10 MIGRATING */ + /* SETSLOT 10 IMPORTING */ /* SETSLOT 10 STABLE */ + /* SETSLOT 10 NODE */ int slot; clusterNode *n;