mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 09:00:51 +00:00
Cluster Manager: fixed 'DELSLOT' subcommand typo.
This commit is contained in:
parent
6ba50784b5
commit
ab270a9777
@ -3833,7 +3833,7 @@ static int clusterManagerFixOpenSlot(int slot) {
|
|||||||
while ((ln = listNext(&li)) != NULL) {
|
while ((ln = listNext(&li)) != NULL) {
|
||||||
clusterManagerNode *n = ln->value;
|
clusterManagerNode *n = ln->value;
|
||||||
if (n == owner) continue;
|
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);
|
success = clusterManagerCheckRedisReply(n, reply, NULL);
|
||||||
if (reply) freeReplyObject(reply);
|
if (reply) freeReplyObject(reply);
|
||||||
if (!success) goto cleanup;
|
if (!success) goto cleanup;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user