summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-11-17 15:40:47 +0100
committerantirez <antirez@gmail.com>2015-11-17 15:43:13 +0100
commit7cfdccd94e873c1f350b111332c0cb66b1e65f43 (patch)
tree721f4aa5fba32260a02996be5fe02f3f0b670f74
parentf3dd472e978d8db7b4ce368bd295fd8fc3af7c0c (diff)
downloadredis-7cfdccd94e873c1f350b111332c0cb66b1e65f43.tar.gz
Remove "s" flag for MIGRATE in command table.
Maybe there are legitimate use cases for MIGRATE inside Lua scripts, at least for now. When the command will be executed in an asynchronous fashion (planned) it is possible we'll no longer be able to permit it from within Lua scripts.
-rw-r--r--src/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.c b/src/server.c
index c63f75875..78d1e0fe0 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,"ws",0,NULL,3,3,1,0,0},
+ {"migrate",migrateCommand,-6,"w",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},