From f90eccb9ee98c19a19c717cd8b4a55c9ae719ad0 Mon Sep 17 00:00:00 2001 From: artix Date: Mon, 8 Oct 2018 16:21:41 +0200 Subject: [PATCH] Cluster Manager: fixed 'DELSLOT' subcommand typo. --- src/redis-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index 57f812b90..2b0aaea6f 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -3833,7 +3833,7 @@ static int clusterManagerFixOpenSlot(int slot) { while ((ln = listNext(&li)) != NULL) { clusterManagerNode *n = ln->value; if (n == owner) continue; - reply = CLUSTER_MANAGER_COMMAND(n, "CLUSTER DELSLOT %d", slot); + reply = CLUSTER_MANAGER_COMMAND(n, "CLUSTER DELSLOTS %d", slot); success = clusterManagerCheckRedisReply(n, reply, NULL); if (reply) freeReplyObject(reply); if (!success) goto cleanup;