moved mqtt thread down
Signed-off-by: Ebbe Baß <ebbe.bass>
This commit is contained in:
+3
-3
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user