From 6d1a0632aa548b1ce0a41bc439373a8b3d9ae126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Fri, 16 Feb 2024 18:43:44 +0100 Subject: [PATCH] moved mqtt thread down MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/app.py b/server/app.py index fd873d2..aa19dd2 100644 --- a/server/app.py +++ b/server/app.py @@ -140,10 +140,10 @@ def start_mqtt_publishers(): print(e) if __name__ == "__main__": - publisher_thread = threading.Thread(target=start_mqtt_publishers()) - publisher_thread.start() - publisher_thread.join() flask_thread = threading.Thread(target=flask_api()) flask_thread.start() flask_thread.join() + publisher_thread = threading.Thread(target=start_mqtt_publishers()) + publisher_thread.start() + publisher_thread.join()