summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorWen Hui <wen.hui.ware@gmail.com>2022-10-25 07:26:08 -0400
committerGitHub <noreply@github.com>2022-10-25 14:26:08 +0300
commit7c3916ae6e5bc31a6991986dd52a5ae9b4147fae (patch)
tree734ced8697a1b7107869836443d157a41965c6b7 /src/commands
parentf8970fdbfa138f8576340ff0af73c3d2603c7e8e (diff)
downloadredis-7c3916ae6e5bc31a6991986dd52a5ae9b4147fae.tar.gz
Fix command GEOHASH and GEOPOS argument doc, mark member as optional (#11417)
These commands take a list of members, which can be empty (i.e. running the command with just a key name). this always results in an empty array reply, so it doesn't make much sense, but changing it is a breaking change. This PR fixes the documentation, making the member field as optional, just makes sure the command format documentation is consistent with the command behavior. The command format will be: 127.0.0.1:6381> GEOPOS key [member [member ...]] 127.0.0.1:6381> GEOHASH key [member [member ...]]
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/geohash.json3
-rw-r--r--src/commands/geopos.json3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/commands/geohash.json b/src/commands/geohash.json
index 4cb383ca3..040c631d1 100644
--- a/src/commands/geohash.json
+++ b/src/commands/geohash.json
@@ -41,7 +41,8 @@
{
"name": "member",
"type": "string",
- "multiple": true
+ "multiple": true,
+ "optional": true
}
]
}
diff --git a/src/commands/geopos.json b/src/commands/geopos.json
index a41d162b2..242f6a887 100644
--- a/src/commands/geopos.json
+++ b/src/commands/geopos.json
@@ -41,7 +41,8 @@
{
"name": "member",
"type": "string",
- "multiple": true
+ "multiple": true,
+ "optional": true
}
]
}