From 0cb66fa156943dbae32a0ad86241a6e201f80fec 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 10c9c1c1..c63f7587 100644 --- a/src/server.c +++ b/src/server.c @@ -265,7 +265,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},