From cbf7e1070a5f3bcd8024dff481a2f729a2b5cf2f Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 28 Jul 2010 18:56:52 +0200 Subject: [PATCH] fix of the fix for the replication bug --- src/t_zset.c | 1 + 1 file changed, 1 insertion(+) 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); -- GitLab