diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-03-06 21:25:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 21:25:34 +0200 |
commit | c4e408880c0fbfe714cd9ad4e1e6b908f00be9b5 (patch) | |
tree | e48ca1c20160c296b60569eaea0b277a168e67ef /redis/commands/cluster.py | |
parent | 6c798df564b644bdad1d7e09f1d750e4fee34848 (diff) | |
download | redis-py-c4e408880c0fbfe714cd9ad4e1e6b908f00be9b5.tar.gz |
Add cluster support for functions (#2016)
* cluster support for functions
* fix test_list_on_cluster mark
* fix mark
* cluster unstable url
* fix
* fix cluster url
* skip tests
* linters
* linters
Diffstat (limited to 'redis/commands/cluster.py')
-rw-r--r-- | redis/commands/cluster.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py index 7342c0c..e14b6e3 100644 --- a/redis/commands/cluster.py +++ b/redis/commands/cluster.py @@ -4,6 +4,7 @@ from redis.exceptions import RedisClusterException, RedisError from .core import ( ACLCommands, DataAccessCommands, + FunctionCommands, ManagementCommands, PubSubCommands, ScriptCommands, @@ -213,6 +214,7 @@ class RedisClusterCommands( PubSubCommands, ClusterDataAccessCommands, ScriptCommands, + FunctionCommands, RedisModuleCommands, ): """ |