summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2019-10-31 10:32:59 +0100
committerantirez <antirez@gmail.com>2019-10-31 10:32:59 +0100
commit4534960b293d41fd5193c1d8a51a19453c2aabf6 (patch)
tree5fd8e7cf4c67b006cd5298a629c697caa8acf222
parent228bc89ecbeeb61ee2a37ba7bd5f565cb5a78f63 (diff)
downloadredis-4534960b293d41fd5193c1d8a51a19453c2aabf6.tar.gz
Modules: remove spurious call from moduleHandleBlockedClients().
Now we handle propagation when we free the context.
-rw-r--r--src/module.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/module.c b/src/module.c
index 85bc9e808..a11d3a306 100644
--- a/src/module.c
+++ b/src/module.c
@@ -4262,7 +4262,6 @@ void moduleHandleBlockedClients(void) {
ctx.client = bc->client;
ctx.blocked_client = bc;
bc->reply_callback(&ctx,(void**)c->argv,c->argc);
- moduleHandlePropagationAfterCommandCallback(&ctx);
moduleFreeContext(&ctx);
}