From: antirez Date: Thu, 29 Sep 2011 13:14:06 +0000 (+0200) Subject: Fixed command table for RESTORE to make it accepting keys only for the right slots... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/7afc3a9611a598686efb8d612f919d921b3487ec?ds=inline Fixed command table for RESTORE to make it accepting keys only for the right slots when cluster is enabled. --- diff --git a/src/redis.c b/src/redis.c index 94daf348..0bcb3fe4 100644 --- a/src/redis.c +++ b/src/redis.c @@ -207,7 +207,7 @@ struct redisCommand redisCommandTable[] = { {"watch",watchCommand,-2,"rs",0,noPreloadGetKeys,1,-1,1,0,0}, {"unwatch",unwatchCommand,1,"rs",0,NULL,0,0,0,0,0}, {"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0}, - {"restore",restoreCommand,4,"awm",0,NULL,0,0,0,0,0}, + {"restore",restoreCommand,4,"awm",0,NULL,1,1,1,0,0}, {"migrate",migrateCommand,6,"aw",0,NULL,0,0,0,0,0}, {"dump",dumpCommand,2,"ar",0,NULL,0,0,0,0,0}, {"object",objectCommand,-2,"r",0,NULL,0,0,0,0,0},