mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 08:41:04 +00:00
Allow CONFIG and SHUTDOWN while in stale-slave state.
This commit is contained in:
parent
89884e8f6e
commit
b770079f2c
@ -221,7 +221,7 @@ struct redisCommand redisCommandTable[] = {
|
|||||||
{"save",saveCommand,1,"ars",0,NULL,0,0,0,0,0},
|
{"save",saveCommand,1,"ars",0,NULL,0,0,0,0,0},
|
||||||
{"bgsave",bgsaveCommand,1,"ar",0,NULL,0,0,0,0,0},
|
{"bgsave",bgsaveCommand,1,"ar",0,NULL,0,0,0,0,0},
|
||||||
{"bgrewriteaof",bgrewriteaofCommand,1,"ar",0,NULL,0,0,0,0,0},
|
{"bgrewriteaof",bgrewriteaofCommand,1,"ar",0,NULL,0,0,0,0,0},
|
||||||
{"shutdown",shutdownCommand,-1,"arl",0,NULL,0,0,0,0,0},
|
{"shutdown",shutdownCommand,-1,"arlt",0,NULL,0,0,0,0,0},
|
||||||
{"lastsave",lastsaveCommand,1,"rR",0,NULL,0,0,0,0,0},
|
{"lastsave",lastsaveCommand,1,"rR",0,NULL,0,0,0,0,0},
|
||||||
{"type",typeCommand,2,"r",0,NULL,1,1,1,0,0},
|
{"type",typeCommand,2,"r",0,NULL,1,1,1,0,0},
|
||||||
{"multi",multiCommand,1,"rs",0,NULL,0,0,0,0,0},
|
{"multi",multiCommand,1,"rs",0,NULL,0,0,0,0,0},
|
||||||
@ -240,7 +240,7 @@ struct redisCommand redisCommandTable[] = {
|
|||||||
{"persist",persistCommand,2,"w",0,NULL,1,1,1,0,0},
|
{"persist",persistCommand,2,"w",0,NULL,1,1,1,0,0},
|
||||||
{"slaveof",slaveofCommand,3,"ast",0,NULL,0,0,0,0,0},
|
{"slaveof",slaveofCommand,3,"ast",0,NULL,0,0,0,0,0},
|
||||||
{"debug",debugCommand,-2,"as",0,NULL,0,0,0,0,0},
|
{"debug",debugCommand,-2,"as",0,NULL,0,0,0,0,0},
|
||||||
{"config",configCommand,-2,"ar",0,NULL,0,0,0,0,0},
|
{"config",configCommand,-2,"art",0,NULL,0,0,0,0,0},
|
||||||
{"subscribe",subscribeCommand,-2,"rpslt",0,NULL,0,0,0,0,0},
|
{"subscribe",subscribeCommand,-2,"rpslt",0,NULL,0,0,0,0,0},
|
||||||
{"unsubscribe",unsubscribeCommand,-1,"rpslt",0,NULL,0,0,0,0,0},
|
{"unsubscribe",unsubscribeCommand,-1,"rpslt",0,NULL,0,0,0,0,0},
|
||||||
{"psubscribe",psubscribeCommand,-2,"rpslt",0,NULL,0,0,0,0,0},
|
{"psubscribe",psubscribeCommand,-2,"rpslt",0,NULL,0,0,0,0,0},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user