summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-05-05 16:36:35 +0200
committerantirez <antirez@gmail.com>2015-05-05 16:36:35 +0200
commit23e304e3132b575d49c3b4c409fec0e40aa602c9 (patch)
tree59ea03bc42bfd30bb4a8c5a0e6a3b7badc68523c
parent2bc1527a9564cf9d7776fc817b8dc13c3e53c1b0 (diff)
downloadredis-23e304e3132b575d49c3b4c409fec0e40aa602c9.tar.gz
Substitute DISQUE to REDIS after merge from Disque
Probably this stuff should be called CLIENT_* in order to cross merge more easily.
-rw-r--r--src/blocked.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blocked.c b/src/blocked.c
index c4618a5cc..2ec2cf626 100644
--- a/src/blocked.c
+++ b/src/blocked.c
@@ -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);
}