Limit statement in RM_BlockClient() to 80 cols.

This commit is contained in:
antirez 2017-09-28 23:15:34 +02:00
parent 193e4acc07
commit c94cd1d831

View File

@ -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);