From 317c0644ccf108aa23ef3fd8358bd66c2840bfc0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:40:54 +0200 Subject: Adding upstream version 5:7.2.4. Signed-off-by: Daniel Baumann --- src/commands/waitaof.json | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/commands/waitaof.json (limited to 'src/commands/waitaof.json') diff --git a/src/commands/waitaof.json b/src/commands/waitaof.json new file mode 100644 index 0000000..735a8f2 --- /dev/null +++ b/src/commands/waitaof.json @@ -0,0 +1,52 @@ +{ + "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": [ + "NOSCRIPT" + ], + "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" + } + ] + } +} -- cgit v1.2.3