remove readloops

This commit is contained in:
Dmitriy Ryajov 2020-05-23 13:26:10 -06:00
parent abc12d0fb5
commit 6e0eb93d4f
1 changed files with 0 additions and 9 deletions

View File

@ -30,9 +30,6 @@ type
peerInfo*: PeerInfo
stream*: LPStream
observedAddrs*: Multiaddress
# notice this is a ugly circular reference collection
# (we got many actually :-))
readLoops*: seq[Future[void]]
ConnectionTracker* = ref object of TrackerBase
opened*: uint64
@ -144,12 +141,6 @@ method close*(s: Connection) {.async, gcsafe.} =
# s.stream = nil
s.closeEvent.fire()
trace "waiting readloops", count=s.readLoops.len,
conn = $s,
oid = s.oid
await all(s.readLoops)
s.readLoops = @[]
trace "connection closed", closed = s.closed,
conn = $s,
oid = s.oid