1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

close the multiprocessing pool to avoid hang

This commit is contained in:
downtownallday 2022-09-18 15:42:15 -04:00
parent c33153c646
commit 5e1dcc933f

View File

@ -581,6 +581,8 @@ def system_status():
# Create a temporary pool of processes for the status checks
with multiprocessing.pool.Pool(processes=5) as pool:
run_checks(False, env, output, pool)
pool.close()
pool.join()
return json_response(output.items)
@app.route('/system/updates')