summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/waitaof.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/commands/waitaof.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/waitaof.json')
-rw-r--r--examples/redis-unstable/src/commands/waitaof.json52
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/redis-unstable/src/commands/waitaof.json b/examples/redis-unstable/src/commands/waitaof.json
deleted file mode 100644
index 19b514c..0000000
--- a/examples/redis-unstable/src/commands/waitaof.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "WAITAOF": {
- "summary": "Blocks until all of the preceding write commands sent by the connection are written to the append-only file of the master and/or replicas.",
- "complexity": "O(1)",
- "group": "generic",
- "since": "7.2.0",
- "arity": 4,
- "function": "waitaofCommand",
- "command_flags": [
- "BLOCKING"
- ],
- "acl_categories": [
- "CONNECTION"
- ],
- "command_tips": [
- "REQUEST_POLICY:ALL_SHARDS",
- "RESPONSE_POLICY:AGG_MIN"
- ],
- "reply_schema": {
- "type": "array",
- "description": "Number of local and remote AOF files in sync.",
- "minItems": 2,
- "maxItems": 2,
- "items": [
- {
- "description": "Number of local AOF files.",
- "type": "integer",
- "minimum": 0
- },
- {
- "description": "Number of replica AOF files.",
- "type": "number",
- "minimum": 0
- }
- ]
- },
- "arguments": [
- {
- "name": "numlocal",
- "type": "integer"
- },
- {
- "name": "numreplicas",
- "type": "integer"
- },
- {
- "name": "timeout",
- "type": "integer"
- }
- ]
- }
-}