0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-23 11:38:50 +02:00
This commit is contained in:
Erik Johnston 2017-04-05 13:43:39 +01:00
parent b43d3267e2
commit 1ca0e78ca1

View file

@ -336,10 +336,10 @@ class BaseReplicationStreamProtocol(LineOnlyReceiver):
for cmd in COMMAND_MAP: for cmd in COMMAND_MAP:
outbound_commands_counter.unregister_counter( outbound_commands_counter.unregister_counter(
cmd.NAME, self.name, self.conn_id cmd, self.name, self.conn_id
) )
inbound_commands_counter.unregister_counter( inbound_commands_counter.unregister_counter(
cmd.NAME, self.name, self.conn_id cmd, self.name, self.conn_id
) )
if self.transport: if self.transport: