Fix typo
This commit is contained in:
parent
b43d3267e2
commit
1ca0e78ca1
|
@ -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 New Issue