Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Remove conn_id
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Sep 4, 2018
1 parent 87b111f commit 3e242dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/replication/tcp/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,9 +590,9 @@ def on_connection_closed(self):
pending_commands = LaterGauge(
"synapse_replication_tcp_protocol_pending_commands",
"",
["name", "conn_id"],
["name"],
lambda: {
(p.name, p.conn_id): len(p.pending_commands) for p in connected_connections
(p.name,): len(p.pending_commands) for p in connected_connections
},
)

Expand Down

0 comments on commit 3e242dc

Please sign in to comment.