diff options
author | antirez <antirez@gmail.com> | 2018-10-09 11:01:41 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2018-10-09 11:02:03 +0200 |
commit | 483496903293be2541c4b779674add12281c5059 (patch) | |
tree | 5c099312009f64c2d12ccec2b519c95f9f6f23a2 /src/scripting.c | |
parent | 71c37605d011041c8de77ae2a65ef4af15438bb4 (diff) | |
download | redis-queue-in-multi.tar.gz |
Transactions: Use CMD_CLAL_NOQUEUE now that call() handles +QUEUED.queue-in-multi
Diffstat (limited to 'src/scripting.c')
-rw-r--r-- | src/scripting.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripting.c b/src/scripting.c index 979156037..51a9f95dc 100644 --- a/src/scripting.c +++ b/src/scripting.c @@ -560,7 +560,7 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) { } /* Run the command */ - int call_flags = CMD_CALL_SLOWLOG | CMD_CALL_STATS; + int call_flags = CMD_CALL_SLOWLOG | CMD_CALL_STATS | CMD_CALL_NOQUEUE; if (server.lua_replicate_commands) { /* Set flags according to redis.set_repl() settings. */ if (server.lua_repl & PROPAGATE_AOF) |