From dcacc00e3750300617ba6e16eb346713f91a783a Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:52:54 +0100 Subject: Remove testing data --- .../src/commands/client-getredir.json | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 examples/redis-unstable/src/commands/client-getredir.json (limited to 'examples/redis-unstable/src/commands/client-getredir.json') diff --git a/examples/redis-unstable/src/commands/client-getredir.json b/examples/redis-unstable/src/commands/client-getredir.json deleted file mode 100644 index 6fdb002..0000000 --- a/examples/redis-unstable/src/commands/client-getredir.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "GETREDIR": { - "summary": "Returns the client ID to which the connection's tracking notifications are redirected.", - "complexity": "O(1)", - "group": "connection", - "since": "6.0.0", - "arity": 2, - "container": "CLIENT", - "function": "clientCommand", - "command_flags": [ - "NOSCRIPT", - "LOADING", - "STALE", - "SENTINEL" - ], - "acl_categories": [ - "CONNECTION" - ], - "reply_schema": { - "oneOf": [ - { - "const": 0, - "description": "Not redirecting notifications to any client." - }, - { - "const": -1, - "description": "Client tracking is not enabled." - }, - { - "type": "integer", - "description": "ID of the client we are redirecting the notifications to.", - "minimum": 1 - } - ] - } - } -} -- cgit v1.2.3