From 1bec2c3634006a8b5a0f734a398d84d7525a2c2c Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 29 Sep 2011 15:26:01 +0200 Subject: [PATCH] added comment about SETSLOT NODE form. --- src/cluster.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/cluster.c b/src/cluster.c index 30b0946f3..ed07a84fa 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;