mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 01:01:22 +00:00
Make clear that runids are not cluster node IDs.
This commit is contained in:
@ -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.");
|
||||||
|
Reference in New Issue
Block a user