From c12bf0b9a84486251f638d20bcf0fc02ce5fe466 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Fri, 7 Jun 2024 02:02:57 +0200 Subject: [PATCH] Test shutdown. --- thermostat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermostat.py b/thermostat.py index 9b1c1d4..ae27990 100755 --- a/thermostat.py +++ b/thermostat.py @@ -386,7 +386,7 @@ def thermostat_loop(): #if __name__ == '__main__': xprint('toto') t1 = Thread(target=thermostat_loop) -#t1.daemon = True +t1.daemon = True t1.start() gunicorn_app = app t1.join()