Substitute DISQUE to REDIS after merge from Disque

Probably this stuff should be called CLIENT_* in order to cross merge
more easily.
This commit is contained in:
antirez 2015-05-05 16:36:35 +02:00
parent 2bc1527a95
commit 23e304e313

View File

@ -121,7 +121,7 @@ void processUnblockedClients(void) {
* is blocked again. Actually processInputBuffer() checks that the
* client is not blocked before to proceed, but things may change and
* the code is conceptually more correct this way. */
if (!(c->flags & DISQUE_BLOCKED)) {
if (!(c->flags & REDIS_BLOCKED)) {
if (c->querybuf && sdslen(c->querybuf) > 0) {
processInputBuffer(c);
}