mirror of
https://github.com/fluencelabs/redis
synced 2025-03-30 22:31:03 +00:00
Make clear that runids are not cluster node IDs.
This commit is contained in:
parent
4dc247eb31
commit
707ff0f714
@ -343,7 +343,7 @@ int masterTryPartialResynchronization(redisClient *c) {
|
|||||||
/* Run id "?" is used by slaves that want to force a full resync. */
|
/* Run id "?" is used by slaves that want to force a full resync. */
|
||||||
if (master_runid[0] != '?') {
|
if (master_runid[0] != '?') {
|
||||||
redisLog(REDIS_NOTICE,"Partial resynchronization not accepted: "
|
redisLog(REDIS_NOTICE,"Partial resynchronization not accepted: "
|
||||||
"Runid mismatch (Client asked for '%s', I'm '%s')",
|
"Runid mismatch (Client asked for runid '%s', my runid is '%s')",
|
||||||
master_runid, server.runid);
|
master_runid, server.runid);
|
||||||
} else {
|
} else {
|
||||||
redisLog(REDIS_NOTICE,"Full resync requested by slave.");
|
redisLog(REDIS_NOTICE,"Full resync requested by slave.");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user