Commit 36c548f0 authored by antirez's avatar antirez
Browse files

Now MULTI returns +OK as well

parent 6e469882
...@@ -5365,6 +5365,7 @@ static void queueMultiCommand(redisClient *c, struct redisCommand *cmd) { ...@@ -5365,6 +5365,7 @@ static void queueMultiCommand(redisClient *c, struct redisCommand *cmd) {
static void multiCommand(redisClient *c) { static void multiCommand(redisClient *c) {
c->flags |= REDIS_MULTI; c->flags |= REDIS_MULTI;
addReply(c,shared.ok);
} }
static void execCommand(redisClient *c) { static void execCommand(redisClient *c) {
......
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