summaryrefslogtreecommitdiff
path: root/redis/cluster.py
diff options
context:
space:
mode:
authorJoni Nevalainen <joni-@users.noreply.github.com>2022-03-23 11:16:09 +0200
committerGitHub <noreply@github.com>2022-03-23 11:16:09 +0200
commit032fd227d3325a24a47b9d33fc42bccaafba28e2 (patch)
treeb16990589611a9e5c700407faf75b7d92e1bd0d5 /redis/cluster.py
parent878e2f2cd961bab5bf00d9b98e4fc7d16d5acfe0 (diff)
downloadredis-py-032fd227d3325a24a47b9d33fc42bccaafba28e2.tar.gz
Remove verbose logging from cluster initializers (#2055)
Diffstat (limited to 'redis/cluster.py')
-rw-r--r--redis/cluster.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/redis/cluster.py b/redis/cluster.py
index 09c9ab7..287fd4f 100644
--- a/redis/cluster.py
+++ b/redis/cluster.py
@@ -518,8 +518,6 @@ class RedisCluster(RedisClusterCommands):
RedisClusterException:
- db (Redis do not support database SELECT in cluster mode)
"""
- log.info("Creating a new instance of RedisCluster client")
-
if startup_nodes is None:
startup_nodes = []
@@ -1670,7 +1668,6 @@ class ClusterPubSub(PubSub):
:type host: str
:type port: int
"""
- log.info("Creating new instance of ClusterPubSub")
self.node = None
self.set_pubsub_node(redis_cluster, node, host, port)
connection_pool = (
@@ -1802,7 +1799,6 @@ class ClusterPipeline(RedisCluster):
**kwargs,
):
""" """
- log.info("Creating new instance of ClusterPipeline")
self.command_stack = []
self.nodes_manager = nodes_manager
self.commands_parser = commands_parser