summaryrefslogtreecommitdiff
path: root/redis/commands/cluster.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/cluster.py')
-rw-r--r--redis/commands/cluster.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py
index f0eaaf7..f434f36 100644
--- a/redis/commands/cluster.py
+++ b/redis/commands/cluster.py
@@ -644,6 +644,16 @@ class ClusterManagementCommands(ManagementCommands):
"""
return self.execute_command("CLUSTER LINKS", target_nodes=target_node)
+ def cluster_flushslots(self, target_nodes: Optional["TargetNodesT"] = None) -> None:
+ raise NotImplementedError(
+ "CLUSTER FLUSHSLOTS is intentionally not implemented in the client."
+ )
+
+ def cluster_bumpepoch(self, target_nodes: Optional["TargetNodesT"] = None) -> None:
+ raise NotImplementedError(
+ "CLUSTER BUMPEPOCH is intentionally not implemented in the client."
+ )
+
def readonly(self, target_nodes: Optional["TargetNodesT"] = None) -> ResponseT:
"""
Enables read queries.