fix hanging download

This commit is contained in:
Jack Robison 2019-01-31 16:53:27 -05:00
parent aa7f0845cc
commit 40b90ce79b
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 1 additions and 2 deletions

View file

@ -120,8 +120,6 @@ class BlobExchangeClientProtocol(asyncio.Protocol):
self._response_fut.cancel()
if self.writer and not self.writer.closed():
self.writer.close_handle()
if self.blob:
await self.blob.close()
self._response_fut = None
self.writer = None
self.blob = None

View file

@ -82,6 +82,7 @@ class BlobDownloader:
peer, task = self.active_connections.popitem()
if task and not task.done():
task.cancel()
await blob.close()
return blob
except asyncio.CancelledError:
while self.active_connections: