From a6c648602b0c28a00775f86ae9d96a6ac912dd13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 02:38:42 +0100 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/app.py b/server/app.py index 94dc998..4db53dc 100644 --- a/server/app.py +++ b/server/app.py @@ -155,6 +155,7 @@ def start_mqtt_publishers(universe_count): print("universe count: "+str(used_universes)) universes_to_publish = list(range(1, used_universes + 1)) # Create and start a thread for each universe + print(universes_to_publish) for universe in range(universes_to_publish): print(universe) threads = [threading.Thread(target=mqtt_publisher, args=(int(universe),))]