From 2991eb410a1a0a80b4b1af5539e00f7997552510 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sun, 18 Sep 2022 16:06:26 -0400 Subject: [PATCH] BUGFIX: Correctly handle the multiprocessing for run_checks in the management daemon. --- management/daemon.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/management/daemon.py b/management/daemon.py index dc59c19b..cbbfd6bf 100755 --- a/management/daemon.py +++ b/management/daemon.py @@ -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')