mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
fix mismatch argument
This commit is contained in:
parent
b80e467023
commit
2cdf4cc656
@ -4194,7 +4194,7 @@ void clusterCommand(client *c) {
|
|||||||
}
|
}
|
||||||
if ((n = clusterLookupNode(c->argv[4]->ptr)) == NULL) {
|
if ((n = clusterLookupNode(c->argv[4]->ptr)) == NULL) {
|
||||||
addReplyErrorFormat(c,"I don't know about node %s",
|
addReplyErrorFormat(c,"I don't know about node %s",
|
||||||
(char*)c->argv[3]->ptr);
|
(char*)c->argv[4]->ptr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
server.cluster->importing_slots_from[slot] = n;
|
server.cluster->importing_slots_from[slot] = n;
|
||||||
|
Loading…
Reference in New Issue
Block a user