summaryrefslogtreecommitdiff
path: root/src/blocked.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2020-05-27 12:39:02 +0200
committerantirez <antirez@gmail.com>2020-05-27 12:39:02 +0200
commitf135aef0dbb3ba5033210a2bdbe41196beefd025 (patch)
tree249e36d403decb295122a92053268747477f11cb /src/blocked.c
parent32378b7fad48bc6c2fc7293ad827fc8674485928 (diff)
downloadredis-f135aef0dbb3ba5033210a2bdbe41196beefd025.tar.gz
Revert "Keep track of meaningful replication offset in replicas too"
This reverts commit 4447ddc8bb36879db9fe49498165b360bf35ba1b.
Diffstat (limited to 'src/blocked.c')
-rw-r--r--src/blocked.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blocked.c b/src/blocked.c
index 92f1cee65..4af79d886 100644
--- a/src/blocked.c
+++ b/src/blocked.c
@@ -110,7 +110,7 @@ void processUnblockedClients(void) {
* the code is conceptually more correct this way. */
if (!(c->flags & CLIENT_BLOCKED)) {
if (c->querybuf && sdslen(c->querybuf) > 0) {
- processInputBuffer(c);
+ processInputBufferAndReplicate(c);
}
}
}