Commit dc4af606 authored by antirez's avatar antirez
Browse files

Cluster: clusterAddSlot() was not doing what stated in the comment.

parent fdb57233
...@@ -1135,8 +1135,8 @@ int clusterNodeGetSlotBit(clusterNode *n, int slot) { ...@@ -1135,8 +1135,8 @@ int clusterNodeGetSlotBit(clusterNode *n, int slot) {
* If the slot is already assigned to another instance this is considered * If the slot is already assigned to another instance this is considered
* an error and REDIS_ERR is returned. */ * an error and REDIS_ERR is returned. */
int clusterAddSlot(clusterNode *n, int slot) { int clusterAddSlot(clusterNode *n, int slot) {
if (clusterNodeSetSlotBit(n,slot) != 0) if (server.cluster->slots[slot]) return REDIS_ERR;
return REDIS_ERR; clusterNodeSetSlotBit(n,slot);
server.cluster->slots[slot] = n; server.cluster->slots[slot] = n;
return REDIS_OK; return REDIS_OK;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment