From 1e2bd1c20bf4a1aea2d728917ebc81c6054be2ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 16:02:45 +0100 Subject: [PATCH] added longer times MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index 5e740a4..472fdff 100644 --- a/server/app.py +++ b/server/app.py @@ -153,6 +153,6 @@ if __name__ == "__main__": tube_index_updater_thread.start() flask_thread = Process(target=flask_api) flask_thread.start() - time.sleep(1) + time.sleep(10) publisher_thread = Process(target=start_mqtt_publishers, args=()) publisher_thread.start()