From 8019f4bdb38db8c2fd3b649c29e78f92b2f5b312 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Tue, 22 Feb 2022 15:54:39 -0300 Subject: [PATCH] stop after finding what to download --- lbry/extras/daemon/components.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lbry/extras/daemon/components.py b/lbry/extras/daemon/components.py index c1e3fe046..931140445 100644 --- a/lbry/extras/daemon/components.py +++ b/lbry/extras/daemon/components.py @@ -423,6 +423,7 @@ class BackgroundDownloaderComponent(Component): continue if utils.get_colliding_prefix_bits(node_id, blob_hash, 32) >= self.MIN_PREFIX_COLLIDING_BITS: self.ongoing_download = asyncio.create_task(self.background_downloader.download_blobs(blob_hash.hex())) + return async def start(self): self.space_manager: DiskSpaceManager = self.component_manager.get_component(DISK_SPACE_COMPONENT)