From febd453aa7855b4441f308b68fe164654b826522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 16:28:40 +0100 Subject: [PATCH] print globals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/server/app.py b/server/app.py index fccb34e..1e5bed9 100644 --- a/server/app.py +++ b/server/app.py @@ -43,12 +43,6 @@ db.autocommit(True) mqtt_client_id = "PiXelTubeMaster-"+wlan_mac_address -# cur = db.cursor() -# cur.execute("SELECT mac_address, universe, dmx_address FROM tubes") -# global TUBE_INDEX -# TUBE_INDEX = cur.fetchall() -# cur.close() - # Function to register a tube in the database def register_tube(mac_address): cur = db.cursor() @@ -161,7 +155,6 @@ if __name__ == "__main__": tube_index_updater_thread.start() flask_thread = Process(target=flask_api) flask_thread.start() + print(globals()) publisher_thread = Process(target=mqtt_publisher) publisher_thread.start() - tube_index_updater_thread = Process(target=update_tube_index) - tube_index_updater_thread.start()