mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 08:41:04 +00:00
fix return wrong value of clusterDelNodeSlots
This commit is contained in:
parent
2cdf4cc656
commit
9e7a8c0207
@ -3600,8 +3600,10 @@ int clusterDelNodeSlots(clusterNode *node) {
|
|||||||
int deleted = 0, j;
|
int deleted = 0, j;
|
||||||
|
|
||||||
for (j = 0; j < CLUSTER_SLOTS; j++) {
|
for (j = 0; j < CLUSTER_SLOTS; j++) {
|
||||||
if (clusterNodeGetSlotBit(node,j)) clusterDelSlot(j);
|
if (clusterNodeGetSlotBit(node,j)) {
|
||||||
deleted++;
|
clusterDelSlot(j);
|
||||||
|
deleted++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return deleted;
|
return deleted;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user