mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +00:00
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.
This commit is contained in:
parent
f3dd472e97
commit
7cfdccd94e
@ -265,7 +265,7 @@ struct redisCommand redisCommandTable[] = {
|
|||||||
{"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0},
|
{"cluster",clusterCommand,-2,"ar",0,NULL,0,0,0,0,0},
|
||||||
{"restore",restoreCommand,-4,"wm",0,NULL,1,1,1,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},
|
{"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},
|
{"asking",askingCommand,1,"r",0,NULL,0,0,0,0,0},
|
||||||
{"readonly",readonlyCommand,1,"rF",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},
|
{"readwrite",readwriteCommand,1,"rF",0,NULL,0,0,0,0,0},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user