fix multiple unblock for clientsArePaused()

This commit is contained in:
zhaozhao.zz 2017-11-06 16:21:35 +08:00
parent febe102bf6
commit e3dfd8c811

View File

@ -2126,9 +2126,9 @@ int clientsArePaused(void) {
while ((ln = listNext(&li)) != NULL) { while ((ln = listNext(&li)) != NULL) {
c = listNodeValue(ln); c = listNodeValue(ln);
/* Don't touch slaves and blocked clients. The latter pending /* Don't touch slaves and blocked or unblocked clients.
* requests be processed when unblocked. */ * The latter pending requests be processed when unblocked. */
if (c->flags & (CLIENT_SLAVE|CLIENT_BLOCKED)) continue; if (c->flags & (CLIENT_SLAVE|CLIENT_BLOCKED|CLIENT_UNBLOCKED)) continue;
c->flags |= CLIENT_UNBLOCKED; c->flags |= CLIENT_UNBLOCKED;
listAddNodeTail(server.unblocked_clients,c); listAddNodeTail(server.unblocked_clients,c);
} }