mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
[core] Do not show fetching metadata message unless there's data to fetch
This commit is contained in:
parent
20f934dc12
commit
1c8349a28e
|
@ -420,6 +420,7 @@ class LegendaryCore:
|
||||||
|
|
||||||
# setup and teardown of thread pool takes some time, so only do it when it makes sense.
|
# setup and teardown of thread pool takes some time, so only do it when it makes sense.
|
||||||
use_threads = len(fetch_list) > 5
|
use_threads = len(fetch_list) > 5
|
||||||
|
if fetch_list:
|
||||||
self.log.info(f'Fetching metadata for {len(fetch_list)} apps.')
|
self.log.info(f'Fetching metadata for {len(fetch_list)} apps.')
|
||||||
if use_threads:
|
if use_threads:
|
||||||
with ThreadPoolExecutor(max_workers=16) as executor:
|
with ThreadPoolExecutor(max_workers=16) as executor:
|
||||||
|
|
Loading…
Reference in a new issue