diff options
Diffstat (limited to 'examples/redis-unstable/src/commands/sentinel-pending-scripts.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/sentinel-pending-scripts.json | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/redis-unstable/src/commands/sentinel-pending-scripts.json b/examples/redis-unstable/src/commands/sentinel-pending-scripts.json deleted file mode 100644 index 22dae47..0000000 --- a/examples/redis-unstable/src/commands/sentinel-pending-scripts.json +++ /dev/null | |||
| @@ -1,52 +0,0 @@ | |||
| 1 | { | ||
| 2 | "PENDING-SCRIPTS": { | ||
| 3 | "summary": "Returns information about pending scripts for Redis Sentinel.", | ||
| 4 | "group": "sentinel", | ||
| 5 | "since": "2.8.4", | ||
| 6 | "arity": 2, | ||
| 7 | "container": "SENTINEL", | ||
| 8 | "function": "sentinelCommand", | ||
| 9 | "command_flags": [ | ||
| 10 | "ADMIN", | ||
| 11 | "SENTINEL", | ||
| 12 | "ONLY_SENTINEL" | ||
| 13 | ], | ||
| 14 | "reply_schema": { | ||
| 15 | "type": "array", | ||
| 16 | "description": "List of pending scripts.", | ||
| 17 | "items": { | ||
| 18 | "type": "object", | ||
| 19 | "additionalProperties": false, | ||
| 20 | "properties": { | ||
| 21 | "argv": { | ||
| 22 | "type": "array", | ||
| 23 | "description": "Script arguments.", | ||
| 24 | "items": { | ||
| 25 | "type": "string" | ||
| 26 | } | ||
| 27 | }, | ||
| 28 | "flags": { | ||
| 29 | "type": "string", | ||
| 30 | "description": "Script flags." | ||
| 31 | }, | ||
| 32 | "pid": { | ||
| 33 | "type": "string", | ||
| 34 | "description": "Script pid." | ||
| 35 | }, | ||
| 36 | "run-time": { | ||
| 37 | "type": "string", | ||
| 38 | "description": "Script run-time." | ||
| 39 | }, | ||
| 40 | "run-delay": { | ||
| 41 | "type": "string", | ||
| 42 | "description": "Script run-delay." | ||
| 43 | }, | ||
| 44 | "retry-num": { | ||
| 45 | "type": "string", | ||
| 46 | "description": "Number of times we tried to execute the script." | ||
| 47 | } | ||
| 48 | } | ||
| 49 | } | ||
| 50 | } | ||
| 51 | } | ||
| 52 | } | ||
