summaryrefslogtreecommitdiff
path: root/src/multi.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-10-09 11:01:41 +0200
committerantirez <antirez@gmail.com>2018-10-09 11:02:03 +0200
commit483496903293be2541c4b779674add12281c5059 (patch)
tree5c099312009f64c2d12ccec2b519c95f9f6f23a2 /src/multi.c
parent71c37605d011041c8de77ae2a65ef4af15438bb4 (diff)
downloadredis-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.c2
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;