summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorStephen Sullivan <sjsullivan7@gmail.com>2022-05-13 12:47:58 -0400
committerGitHub <noreply@github.com>2022-05-13 19:47:58 +0300
commitacd517c88331d0678957e09486aad3453e746ad0 (patch)
tree092f725dab0fbdccc48b47ce22278c3eff3ee522 /src/commands
parent135998ed8d0fc92d7ee6e23b1a66353f5900695f (diff)
downloadredis-acd517c88331d0678957e09486aad3453e746ad0.tar.gz
re-add SENTINEL SLAVES command, missing in redis 7.0 (#10723)
Alias was mistakenly forgotten when the sub commands introduced as json files.
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/sentinel-slaves.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/commands/sentinel-slaves.json b/src/commands/sentinel-slaves.json
new file mode 100644
index 000000000..bce5c7692
--- /dev/null
+++ b/src/commands/sentinel-slaves.json
@@ -0,0 +1,27 @@
+{
+ "SLAVES": {
+ "summary": "List the monitored slaves",
+ "complexity": "O(N) where N is the number of slaves",
+ "group": "sentinel",
+ "since": "2.8.0",
+ "arity": 3,
+ "container": "SENTINEL",
+ "function": "sentinelCommand",
+ "deprecated_since": "5.0.0",
+ "replaced_by": "`SENTINEL REPLICAS`",
+ "doc_flags": [
+ "DEPRECATED"
+ ],
+ "command_flags": [
+ "ADMIN",
+ "SENTINEL",
+ "ONLY_SENTINEL"
+ ],
+ "arguments": [
+ {
+ "name": "master-name",
+ "type": "string"
+ }
+ ]
+ }
+}