From fa84c4068fe6b4b2be8271c2c3fd9eb2cfac7999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Retzler?= Date: Wed, 24 Feb 2016 07:16:12 +0100 Subject: [PATCH] Temporarily skip starting spectrum_watchdog_thread_function to fix hangs. --- openwebrx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openwebrx.py b/openwebrx.py index 174ad44..fc4240f 100755 --- a/openwebrx.py +++ b/openwebrx.py @@ -154,8 +154,8 @@ def main(): print "[openwebrx-main] Starting spectrum thread." spectrum_thread=threading.Thread(target = spectrum_thread_function, args = ()) spectrum_thread.start() - spectrum_watchdog_thread=threading.Thread(target = spectrum_watchdog_thread_function, args = ()) - spectrum_watchdog_thread.start() + #spectrum_watchdog_thread=threading.Thread(target = spectrum_watchdog_thread_function, args = ()) + #spectrum_watchdog_thread.start() get_cpu_usage() bcastmsg_thread=threading.Thread(target = bcastmsg_thread_function, args = ())