Slave removal: blocked.c logs fixed.

This commit is contained in:
antirez 2018-09-10 16:46:14 +02:00
parent c9bab6f302
commit 05e8db24ed

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;
}