From 4534960b293d41fd5193c1d8a51a19453c2aabf6 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 31 Oct 2019 10:32:59 +0100 Subject: [PATCH] Modules: remove spurious call from moduleHandleBlockedClients(). Now we handle propagation when we free the context. --- src/module.c | 1 - 1 file changed, 1 deletion(-) 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); }