mirror of
https://github.com/fluencelabs/redis
synced 2025-04-05 01:01:04 +00:00
Log when a slave lose the connection with its master.
This commit is contained in:
parent
658aff9d29
commit
b2dedd9da8
@ -654,9 +654,9 @@ void freeClient(redisClient *c) {
|
|||||||
*
|
*
|
||||||
* Note that before doing this we make sure that the client is not in
|
* Note that before doing this we make sure that the client is not in
|
||||||
* some unexpected state, by checking its flags. */
|
* some unexpected state, by checking its flags. */
|
||||||
if (server.master &&
|
if (server.master && c->flags & REDIS_MASTER) {
|
||||||
(c->flags & REDIS_MASTER) &&
|
redisLog(REDIS_WARNING,"Connection with master lost.");
|
||||||
!(c->flags & (REDIS_CLOSE_AFTER_REPLY|
|
if (!(c->flags & (REDIS_CLOSE_AFTER_REPLY|
|
||||||
REDIS_CLOSE_ASAP|
|
REDIS_CLOSE_ASAP|
|
||||||
REDIS_BLOCKED|
|
REDIS_BLOCKED|
|
||||||
REDIS_UNBLOCKED)))
|
REDIS_UNBLOCKED)))
|
||||||
@ -664,6 +664,7 @@ void freeClient(redisClient *c) {
|
|||||||
replicationCacheMaster(c);
|
replicationCacheMaster(c);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Free the query buffer */
|
/* Free the query buffer */
|
||||||
sdsfree(c->querybuf);
|
sdsfree(c->querybuf);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user