From 73fac227a0dd3a7d25e29b4718f8588f55db07d6 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 20 Oct 2011 11:17:30 +0200 Subject: [PATCH] use signalModifiedKey to set the key as dirty in the context of WATCH for both MIGRATE and RESTORE. --- src/cluster.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cluster.c b/src/cluster.c index ccb230c9..42b01113 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1506,6 +1506,7 @@ void restoreCommand(redisClient *c) { /* Create the key and set the TTL if any */ dbAdd(c->db,c->argv[1],obj); if (ttl) setExpire(c->db,c->argv[1],time(NULL)+ttl); + signalModifiedKey(c->db,c->argv[1]); addReply(c,shared.ok); server.dirty++; } @@ -1598,6 +1599,7 @@ void migrateCommand(redisClient *c) { robj *aux; dbDelete(c->db,c->argv[3]); + signalModifiedKey(c->db,c->argv[3]); addReply(c,shared.ok); server.dirty++; -- GitLab