diff options
Diffstat (limited to 'src/commands/sentinel-remove.json')
-rw-r--r-- | src/commands/sentinel-remove.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/commands/sentinel-remove.json b/src/commands/sentinel-remove.json new file mode 100644 index 0000000..1fe084f --- /dev/null +++ b/src/commands/sentinel-remove.json @@ -0,0 +1,25 @@ +{ + "REMOVE": { + "summary": "Stops monitoring.", + "complexity": "O(1)", + "group": "sentinel", + "since": "2.8.4", + "arity": 3, + "container": "SENTINEL", + "function": "sentinelCommand", + "command_flags": [ + "ADMIN", + "SENTINEL", + "ONLY_SENTINEL" + ], + "reply_schema": { + "const": "OK" + }, + "arguments": [ + { + "name": "master-name", + "type": "string" + } + ] + } +} |