From 1a9ae1caa1e7a86c3e4eee6ca9e5d149395329dd Mon Sep 17 00:00:00 2001 From: Migatu Date: Tue, 9 Apr 2024 12:46:39 +0200 Subject: [PATCH] fix --- communication_subroutine.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/communication_subroutine.py b/communication_subroutine.py index 378c76a..4956a9b 100644 --- a/communication_subroutine.py +++ b/communication_subroutine.py @@ -60,7 +60,8 @@ def comm_subroutine(): logger.setLevel(logging.DEBUG) logger.info("Started") threads = [] - threads.append(threading.Thread(target=waitress_run, args=(logger,))) + threads.append(threading.Thread(target=flask_debug, args=(logger,))) + #threads.append(threading.Thread(target=waitress_run, args=(logger,))) threads.append(threading.Thread(target=scan_queue,)) for worker in threads: