Modules: remove spurious call from moduleHandleBlockedClients().

Now we handle propagation when we free the context.
This commit is contained in:
antirez 2019-10-31 10:32:59 +01:00
parent 228bc89ecb
commit 4534960b29

View File

@ -4262,7 +4262,6 @@ void moduleHandleBlockedClients(void) {
ctx.client = bc->client; ctx.client = bc->client;
ctx.blocked_client = bc; ctx.blocked_client = bc;
bc->reply_callback(&ctx,(void**)c->argv,c->argc); bc->reply_callback(&ctx,(void**)c->argv,c->argc);
moduleHandlePropagationAfterCommandCallback(&ctx);
moduleFreeContext(&ctx); moduleFreeContext(&ctx);
} }