Slave removal: blocked.c logs fixed.

This commit is contained in:
antirez 2018-09-10 16:46:14 +02:00
parent a5443a6247
commit 1ce5c6ff00

View File

@ -215,7 +215,7 @@ void disconnectAllBlockedClients(void) {
if (c->flags & CLIENT_BLOCKED) {
addReplySds(c,sdsnew(
"-UNBLOCKED force unblock from blocking operation, "
"instance state changed (master -> slave?)\r\n"));
"instance state changed (master -> replica?)\r\n"));
unblockClient(c);
c->flags |= CLIENT_CLOSE_AFTER_REPLY;
}