Skip to content

Commit 927e7b1

Browse files
oranagrajschmieg
authored andcommitted
A few non-data commands that should be allowed while loading or stale
SELECT, and HELLO are commands that may be executed by the client as soon as it connects, there's no reason to block them, preventing the client from doing the rest of his sequence (which might just be INFO or CONFIG, etc). MONITOR, DEBUG, SLOWLOG, TIME, LASTSAVE are all non-data accessing commands, which there's no reason to block.
1 parent fa22e65 commit 927e7b1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/server.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ struct redisCommand redisCommandTable[] = {
579579
0,NULL,0,0,0,0,0,0},
580580

581581
{"select",selectCommand,2,
582-
"ok-loading fast @keyspace",
582+
"ok-loading fast ok-stale @keyspace",
583583
0,NULL,0,0,0,0,0,0},
584584

585585
{"swapdb",swapdbCommand,3,
@@ -660,7 +660,7 @@ struct redisCommand redisCommandTable[] = {
660660
0,NULL,0,0,0,0,0,0},
661661

662662
{"lastsave",lastsaveCommand,1,
663-
"read-only random fast @admin @dangerous",
663+
"read-only random fast ok-loading ok-stale @admin @dangerous",
664664
0,NULL,0,0,0,0,0,0},
665665

666666
{"type",typeCommand,2,
@@ -708,7 +708,7 @@ struct redisCommand redisCommandTable[] = {
708708
0,NULL,0,0,0,0,0,0},
709709

710710
{"monitor",monitorCommand,1,
711-
"admin no-script",
711+
"admin no-script ok-loading ok-stale",
712712
0,NULL,0,0,0,0,0,0},
713713

714714
{"ttl",ttlCommand,2,
@@ -740,7 +740,7 @@ struct redisCommand redisCommandTable[] = {
740740
0,NULL,0,0,0,0,0,0},
741741

742742
{"debug",debugCommand,-2,
743-
"admin no-script",
743+
"admin no-script ok-loading ok-stale",
744744
0,NULL,0,0,0,0,0,0},
745745

746746
{"config",configCommand,-2,
@@ -820,11 +820,11 @@ struct redisCommand redisCommandTable[] = {
820820
0,memoryGetKeys,0,0,0,0,0,0},
821821

822822
{"client",clientCommand,-2,
823-
"admin no-script random @connection",
823+
"admin no-script random ok-loading ok-stale @connection",
824824
0,NULL,0,0,0,0,0,0},
825825

826826
{"hello",helloCommand,-2,
827-
"no-auth no-script fast no-monitor no-slowlog @connection",
827+
"no-auth no-script fast no-monitor ok-loading ok-stale no-slowlog @connection",
828828
0,NULL,0,0,0,0,0,0},
829829

830830
/* EVAL can modify the dataset, however it is not flagged as a write
@@ -838,15 +838,15 @@ struct redisCommand redisCommandTable[] = {
838838
0,evalGetKeys,0,0,0,0,0,0},
839839

840840
{"slowlog",slowlogCommand,-2,
841-
"admin random",
841+
"admin random ok-loading ok-stale",
842842
0,NULL,0,0,0,0,0,0},
843843

844844
{"script",scriptCommand,-2,
845845
"no-script @scripting",
846846
0,NULL,0,0,0,0,0,0},
847847

848848
{"time",timeCommand,1,
849-
"read-only random fast",
849+
"read-only random fast ok-loading ok-stale",
850850
0,NULL,0,0,0,0,0,0},
851851

852852
{"bitop",bitopCommand,-4,

0 commit comments

Comments
 (0)