forked from LBRYCommunity/lbry-sdk
Merge pull request #1834 from lbryio/remove-blob-request-lock
remove blob request asyncio.Lock
This commit is contained in:
commit
be6e8744b0
1 changed files with 16 additions and 18 deletions
|
@ -23,7 +23,6 @@ class BlobExchangeClientProtocol(asyncio.Protocol):
|
|||
|
||||
self._blob_bytes_received = 0
|
||||
self._response_fut: asyncio.Future = None
|
||||
self._request_lock = asyncio.Lock(loop=self.loop)
|
||||
|
||||
def data_received(self, data: bytes):
|
||||
if not self.transport or self.transport.is_closing():
|
||||
|
@ -130,7 +129,6 @@ class BlobExchangeClientProtocol(asyncio.Protocol):
|
|||
async def download_blob(self, blob: 'BlobFile') -> typing.Tuple[bool, bool]:
|
||||
if blob.get_is_verified():
|
||||
return False, True
|
||||
async with self._request_lock:
|
||||
try:
|
||||
self.blob, self.writer, self._blob_bytes_received = blob, blob.open_for_writing(), 0
|
||||
self._response_fut = asyncio.Future(loop=self.loop)
|
||||
|
|
Loading…
Reference in a new issue