don't check if peers have `sendConn` when disconnecting for bad scoring

This commit is contained in:
Giovanni Petrantoni 2021-02-22 10:04:02 +09:00
parent 51d8cd4ade
commit 922cd92f94
1 changed files with 6 additions and 7 deletions

View File

@ -82,7 +82,6 @@ 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: