Commit edc2f63a authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

increment dirty counter after hmset

parent 97224de7
...@@ -6294,6 +6294,7 @@ static void hmsetCommand(redisClient *c) { ...@@ -6294,6 +6294,7 @@ static void hmsetCommand(redisClient *c) {
hashSet(o,c->argv[i],c->argv[i+1]); hashSet(o,c->argv[i],c->argv[i+1]);
} }
addReply(c, shared.ok); addReply(c, shared.ok);
server.dirty++;
} }
static void hincrbyCommand(redisClient *c) { static void hincrbyCommand(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