diff --git a/synapse/replication/tcp/handler.py b/synapse/replication/tcp/handler.py
index 7c5d6c76e7..1b05468483 100644
--- a/synapse/replication/tcp/handler.py
+++ b/synapse/replication/tcp/handler.py
@@ -119,10 +119,9 @@ class ReplicationCommandHandler:
import txredisapi
logger.info(
- "Connecting to redis (host=%r port=%r DBID=%r)",
+ "Connecting to redis (host=%r port=%r)",
hs.config.redis_host,
hs.config.redis_port,
- hs.config.redis_dbid,
)
# We need two connections to redis, one for the subscription stream and
@@ -133,7 +132,6 @@ class ReplicationCommandHandler:
outbound_redis_connection = txredisapi.lazyConnection(
host=hs.config.redis_host,
port=hs.config.redis_port,
- dbid=hs.config.redis_dbid,
password=hs.config.redis.redis_password,
reconnect=True,
)
diff --git a/synapse/replication/tcp/redis.py b/synapse/replication/tcp/redis.py
index db69f92557..55bfa71dfd 100644
--- a/synapse/replication/tcp/redis.py
+++ b/synapse/replication/tcp/redis.py
@@ -96,7 +96,7 @@ class RedisSubscriber(txredisapi.SubscriberProtocol, AbstractConnection):
cmd = parse_command_from_line(message)
except Exception:
logger.exception(
- "[%s] failed to parse line: %r", message,
+ "Failed to parse replication line: %r", message,
)
return
|