Commit 4534960b authored by antirez's avatar antirez
Browse files

Modules: remove spurious call from moduleHandleBlockedClients().

Now we handle propagation when we free the context.
parent 228bc89e
...@@ -4262,7 +4262,6 @@ void moduleHandleBlockedClients(void) { ...@@ -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);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment