mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-17 06:23:53 +01:00
Fix typo
This commit is contained in:
parent
b43d3267e2
commit
1ca0e78ca1
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue