From: antirez Date: Wed, 28 Jul 2010 16:56:52 +0000 (+0200) Subject: fix of the fix for the replication bug X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/cbf7e1070a5f3bcd8024dff481a2f729a2b5cf2f fix of the fix for the replication bug --- diff --git a/src/t_zset.c b/src/t_zset.c index 9b59ca9a..8efe3c2a 100644 --- a/src/t_zset.c +++ b/src/t_zset.c @@ -713,6 +713,7 @@ void zunionInterGenericCommand(redisClient *c, robj *dstkey, int op) { dbAdd(c->db,dstkey,dstobj); addReplyLongLong(c, dstzset->zsl->length); if (!touched) touchWatchedKey(c->db,dstkey); + server.dirty++; } else { decrRefCount(dstobj); addReply(c, shared.czero);