From 23e304e3132b575d49c3b4c409fec0e40aa602c9 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 5 May 2015 16:36:35 +0200 Subject: [PATCH] Substitute DISQUE to REDIS after merge from Disque Probably this stuff should be called CLIENT_* in order to cross merge more easily. --- src/blocked.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }