From 984c959f38d3aa70fb642bde3b22f93a73e52713 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Mon, 6 Apr 2020 14:43:23 +0100 Subject: [PATCH] Fixup name 'handler' --- synapse/replication/tcp/resource.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/replication/tcp/resource.py b/synapse/replication/tcp/resource.py index 44fb3551c1..4764f3b121 100644 --- a/synapse/replication/tcp/resource.py +++ b/synapse/replication/tcp/resource.py @@ -42,7 +42,7 @@ class ReplicationStreamProtocolFactory(Factory): """ def __init__(self, hs): - self.handler = hs.get_tcp_replication() + self.command_handler = hs.get_tcp_replication() self.clock = hs.get_clock() self.server_name = hs.config.server_name @@ -52,7 +52,7 @@ class ReplicationStreamProtocolFactory(Factory): def buildProtocol(self, addr): return ServerReplicationStreamProtocol( - self.server_name, self.clock, self.handler + self.server_name, self.clock, self.command_handler )