From bf2cd6ae8fd6cf65e058b65e5d44de98660a4b02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 18 Feb 2024 16:20:06 +0100 Subject: [PATCH] made quciekr update cycle 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 b399146..3c17a03 100644 --- a/server/app.py +++ b/server/app.py @@ -174,7 +174,7 @@ def tube_index_updater(ti_sender): print("Updated tube index with values: "+str(tube_index)) except Exception as e: print(e) - time.sleep(5) + time.sleep(2) if __name__ == "__main__": (ti_receiver,ti_sender) = Pipe(True)