From 7a7c975effef1e9bd316be46ab99196413e0f918 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 29 Nov 2023 16:08:13 -0500 Subject: [PATCH] Ensure return from health shutdown --- health-daemon/pvchealthd/objects/MonitoringInstance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/health-daemon/pvchealthd/objects/MonitoringInstance.py b/health-daemon/pvchealthd/objects/MonitoringInstance.py index 5b55b630..7148eb1c 100644 --- a/health-daemon/pvchealthd/objects/MonitoringInstance.py +++ b/health-daemon/pvchealthd/objects/MonitoringInstance.py @@ -344,6 +344,7 @@ class MonitoringInstance(object): def shutdown(self): self.stop_check_timer() self.run_cleanups() + return def start_check_timer(self): check_interval = self.config["monitoring_interval"]