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/multi.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/multi.c')
-rw-r--r-- | src/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multi.c b/src/multi.c index 112ce0605..9f789fa62 100644 --- a/src/multi.c +++ b/src/multi.c @@ -158,7 +158,7 @@ void execCommand(client *c) { must_propagate = 1; } - call(c,CMD_CALL_FULL); + call(c,CMD_CALL_FULL|CMD_CALL_NOQUEUE); /* Commands may alter argc/argv, restore mstate. */ c->mstate.commands[j].argc = c->argc; |