mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-05 20:29:02 +08:00
threading
This commit is contained in:
parent
d88a3c15f7
commit
df74c3c638
@ -106,7 +106,7 @@ def check_updates(id_task, disable_list):
|
|||||||
exts = [ext for ext in extensions.extensions if ext.remote is not None and ext.name not in disabled]
|
exts = [ext for ext in extensions.extensions if ext.remote is not None and ext.name not in disabled]
|
||||||
shared.state.job_count = len(exts)
|
shared.state.job_count = len(exts)
|
||||||
|
|
||||||
for ext in exts:
|
def _check_update(ext):
|
||||||
shared.state.textinfo = ext.name
|
shared.state.textinfo = ext.name
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -117,6 +117,14 @@ def check_updates(id_task, disable_list):
|
|||||||
except Exception:
|
except Exception:
|
||||||
errors.report(f"Error checking updates for {ext.name}", exc_info=True)
|
errors.report(f"Error checking updates for {ext.name}", exc_info=True)
|
||||||
|
|
||||||
|
threads = []
|
||||||
|
for ext in exts:
|
||||||
|
thread = threading.Thread(target=_check_update, args=(ext,))
|
||||||
|
thread.start()
|
||||||
|
threads.append(thread)
|
||||||
|
|
||||||
|
for thread in threads:
|
||||||
|
thread.join()
|
||||||
shared.state.nextjob()
|
shared.state.nextjob()
|
||||||
|
|
||||||
return extension_table(), ""
|
return extension_table(), ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user