From 8971e311d6306081babbd4ec1d4c0331589dcb5e Mon Sep 17 00:00:00 2001 From: Ali-Akber Saifee Date: Thu, 5 Jun 2025 11:53:49 -0700 Subject: [PATCH] Remove deprecated arg from call to ClusterPipeline `cluster_error_retry_attempts` is a deprecated argument that was being passed to the constructor of ClusterPipeline from the `pipeline` method. --- redis/cluster.py | 1 - 1 file changed, 1 deletion(-) diff --git a/redis/cluster.py b/redis/cluster.py index baa85ae122..db9e3e05f7 100644 --- a/redis/cluster.py +++ b/redis/cluster.py @@ -856,7 +856,6 @@ def pipeline(self, transaction=None, shard_hint=None): startup_nodes=self.nodes_manager.startup_nodes, result_callbacks=self.result_callbacks, cluster_response_callbacks=self.cluster_response_callbacks, - cluster_error_retry_attempts=self.retry.get_retries(), read_from_replicas=self.read_from_replicas, load_balancing_strategy=self.load_balancing_strategy, reinitialize_steps=self.reinitialize_steps,