Commit 2bf8c2c1 authored by antirez's avatar antirez
Browse files

Limit statement in RM_BlockClient() to 80 cols.

parent 54ad626c
......@@ -3423,7 +3423,8 @@ RedisModuleBlockedClient *RM_BlockClient(RedisModuleCtx *ctx, RedisModuleCmdFunc
if (islua || ismulti) {
c->bpop.module_blocked_handle = NULL;
addReplyError(c, islua ? "Blocking module command called from Lua script" :
addReplyError(c, islua ?
"Blocking module command called from Lua script" :
"Blocking module command called from transaction");
} else {
blockClient(c,BLOCKED_MODULE);
......
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