Commit 23e304e3 authored by antirez's avatar antirez
Browse files

Substitute DISQUE to REDIS after merge from Disque

Probably this stuff should be called CLIENT_* in order to cross merge
more easily.
parent 2bc1527a
...@@ -121,7 +121,7 @@ void processUnblockedClients(void) { ...@@ -121,7 +121,7 @@ void processUnblockedClients(void) {
* is blocked again. Actually processInputBuffer() checks that the * is blocked again. Actually processInputBuffer() checks that the
* client is not blocked before to proceed, but things may change and * client is not blocked before to proceed, but things may change and
* the code is conceptually more correct this way. */ * 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) { if (c->querybuf && sdslen(c->querybuf) > 0) {
processInputBuffer(c); processInputBuffer(c);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment