From 4fe8e61637c6fe0ee4b6e13077f77c80f2a232bb Mon Sep 17 00:00:00 2001 From: Justin Paul Date: Wed, 8 Mar 2023 08:51:40 -0500 Subject: [PATCH] Update python-node-exporter.py --- app/python-node-exporter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/python-node-exporter.py b/app/python-node-exporter.py index fc9b30a..0fc49ea 100644 --- a/app/python-node-exporter.py +++ b/app/python-node-exporter.py @@ -386,10 +386,13 @@ while True: # check if any thread has crashed if not auth_thread.is_alive(): # restart the thread + print("Starting ZvmAuthHandler Thread") auth_thread = start_thread(ZvmAuthHandler) if not data_thread.is_alive(): # restart the thread + print("Starting GetDataFunc Thread") data_thread = start_thread(GetDataFunc) if not stats_thread.is_alive(): # restart the thread + print("Starting GetStatsFunc Thread") stats_thread = start_thread(GetStatsFunc)