From 3b5289a04c474ce66df2ef410e053795b1f0f1d2 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 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;