aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/client-getname.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/client-getname.json')
-rw-r--r--examples/redis-unstable/src/commands/client-getname.json32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/redis-unstable/src/commands/client-getname.json b/examples/redis-unstable/src/commands/client-getname.json
deleted file mode 100644
index 9e237af..0000000
--- a/examples/redis-unstable/src/commands/client-getname.json
+++ /dev/null
@@ -1,32 +0,0 @@
1{
2 "GETNAME": {
3 "summary": "Returns the name of the connection.",
4 "complexity": "O(1)",
5 "group": "connection",
6 "since": "2.6.9",
7 "arity": 2,
8 "container": "CLIENT",
9 "function": "clientCommand",
10 "command_flags": [
11 "NOSCRIPT",
12 "LOADING",
13 "STALE",
14 "SENTINEL"
15 ],
16 "acl_categories": [
17 "CONNECTION"
18 ],
19 "reply_schema": {
20 "oneOf": [
21 {
22 "type": "string",
23 "description": "The connection name of the current connection"
24 },
25 {
26 "type": "null",
27 "description": "Connection name was not set"
28 }
29 ]
30 }
31 }
32}