From 1236471b7b415c4773b8545e1c658572a211f7da Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 17 Nov 2015 15:33:09 +0100 Subject: [PATCH] Fix MIGRATE entry in command table. Thanks to Oran Agra (@oranagra) for reporting. Key extraction would not work otherwise and it does not make sense to take wrong data in the command table. --- src/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.c b/src/server.c index e763a5cb..bb28eb45 100644 --- a/src/server.c +++ b/src/server.c @@ -264,7 +264,7 @@ struct redisCommand redisCommandTable[] = { {"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0}, {"restore",restoreCommand,-4,"wm",0,NULL,1,1,1,0,0}, {"restore-asking",restoreCommand,-4,"wmk",0,NULL,1,1,1,0,0}, - {"migrate",migrateCommand,-6,"w",0,NULL,0,0,0,0,0}, + {"migrate",migrateCommand,-6,"ws",0,NULL,3,3,1,0,0}, {"asking",askingCommand,1,"r",0,NULL,0,0,0,0,0}, {"readonly",readonlyCommand,1,"rF",0,NULL,0,0,0,0,0}, {"readwrite",readwriteCommand,1,"rF",0,NULL,0,0,0,0,0},