diff options
Diffstat (limited to 'src/cluster.c')
-rw-r--r-- | src/cluster.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/cluster.c b/src/cluster.c index 005a6ba54..3b3d2682a 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -3289,14 +3289,13 @@ int verifyClusterConfigWithData(void) { update_config++; /* Case A: slot is unassigned. Take responsability for it. */ if (server.cluster->slots[j] == NULL) { - redisLog(REDIS_WARNING, "I've keys about slot %d that is " - "unassigned. Taking responsability " - "for it.",j); + redisLog(REDIS_WARNING, "I have keys for unassigned slot %d. " + "Taking responsibility for it.",j); clusterAddSlot(myself,j); } else { - redisLog(REDIS_WARNING, "I've keys about slot %d that is " - "already assigned to a different node. " - "Setting it in importing state.",j); + redisLog(REDIS_WARNING, "I have keys for slot %d, but the slot is " + "assigned to another node. " + "Setting it to importing state.",j); server.cluster->importing_slots_from[j] = server.cluster->slots[j]; } } |