don't check if peers have `sendConn` when disconnecting for bad scoring
This commit is contained in:
parent
51d8cd4ade
commit
922cd92f94
|
@ -82,13 +82,12 @@ proc disconnectPeer(g: GossipSub, peer: PubSubPeer) {.async.} =
|
||||||
else:
|
else:
|
||||||
libp2p_gossipsub_bad_score_disconnection.inc(labelValues = ["unknown"])
|
libp2p_gossipsub_bad_score_disconnection.inc(labelValues = ["unknown"])
|
||||||
|
|
||||||
if peer.sendConn != nil:
|
try:
|
||||||
try:
|
await g.switch.disconnect(peer.peerId)
|
||||||
await g.switch.disconnect(peer.peerId)
|
except CancelledError:
|
||||||
except CancelledError:
|
raise
|
||||||
raise
|
except CatchableError as exc:
|
||||||
except CatchableError as exc:
|
trace "Failed to close connection", peer, error = exc.name, msg = exc.msg
|
||||||
trace "Failed to close connection", peer, error = exc.name, msg = exc.msg
|
|
||||||
|
|
||||||
proc updateScores*(g: GossipSub) = # avoid async
|
proc updateScores*(g: GossipSub) = # avoid async
|
||||||
trace "updating scores", peers = g.peers.len
|
trace "updating scores", peers = g.peers.len
|
||||||
|
|
Loading…
Reference in New Issue