mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-14 00:24:23 +08:00
fix: reduce thread pool: 8 -> 4
https://github.com/ltdrdata/ComfyUI-Manager/issues/301
This commit is contained in:
parent
10fe8fd42c
commit
d6c956ff60
@ -27,7 +27,7 @@ except:
|
|||||||
print(f"[WARN] ComfyUI-Manager: Your ComfyUI version is outdated. Please update to the latest version.")
|
print(f"[WARN] ComfyUI-Manager: Your ComfyUI version is outdated. Please update to the latest version.")
|
||||||
|
|
||||||
|
|
||||||
version = [1, 25, 1]
|
version = [1, 25, 2]
|
||||||
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
|
||||||
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
print(f"### Loading: ComfyUI-Manager ({version_str})")
|
||||||
|
|
||||||
@ -729,7 +729,7 @@ def check_custom_nodes_installed(json_obj, do_fetch=False, do_update_check=True,
|
|||||||
def process_custom_node(item):
|
def process_custom_node(item):
|
||||||
check_a_custom_node_installed(item, do_fetch, do_update_check, do_update)
|
check_a_custom_node_installed(item, do_fetch, do_update_check, do_update)
|
||||||
|
|
||||||
with concurrent.futures.ThreadPoolExecutor(8) as executor:
|
with concurrent.futures.ThreadPoolExecutor(4) as executor:
|
||||||
for item in json_obj['custom_nodes']:
|
for item in json_obj['custom_nodes']:
|
||||||
executor.submit(process_custom_node, item)
|
executor.submit(process_custom_node, item)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user