diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-03-14 13:43:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 13:43:36 +0200 |
commit | 5d5f8923e48f7fe2d30959db50cc9bcfc953578b (patch) | |
tree | 5655c97f8c5c5f793794a54ba9bb89a9b8e4f087 /redis/client.py | |
parent | 9376ed82cd8b8296f5585eb96d137e54b56d723d (diff) | |
download | redis-py-5d5f8923e48f7fe2d30959db50cc9bcfc953578b.tar.gz |
Add support for CLUSTER DELSLOTSRANGE (#2018)
* delslotsrange
* test
* linters
* skip test
* linters
Diffstat (limited to 'redis/client.py')
-rwxr-xr-x | redis/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/redis/client.py b/redis/client.py index 465bb5f..de0180c 100755 --- a/redis/client.py +++ b/redis/client.py @@ -714,6 +714,7 @@ class AbstractRedis: "CLUSTER COUNT-FAILURE-REPORTS": lambda x: int(x), "CLUSTER COUNTKEYSINSLOT": lambda x: int(x), "CLUSTER DELSLOTS": bool_ok, + "CLUSTER DELSLOTSRANGE": bool_ok, "CLUSTER FAILOVER": bool_ok, "CLUSTER FORGET": bool_ok, "CLUSTER INFO": parse_cluster_info, |