BUGFIX: Correctly handle the multiprocessing for run_checks in the management daemon (#2163)

See discussion here: #2083

Co-authored-by: Steve Hay <hay.steve@gmail.com>
This commit is contained in:
Steve Hay 2022-09-24 09:56:27 -04:00 committed by GitHub
parent d584a41e60
commit 1e1a054686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -571,6 +571,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')