From fcc7b616055a0410c7ede275067bba4e21724b21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 18 Feb 2024 14:59:35 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index aba484f..49b7119 100644 --- a/server/app.py +++ b/server/app.py @@ -155,7 +155,7 @@ def tube_index_updater(ti_sender): time.sleep(5) if __name__ == "__main__": - (ti_receiver,ti_sender) = Pipe(False) + (ti_receiver,ti_sender) = Pipe(True) ti_updater_thread = Process(target=tube_index_updater, args=(ti_sender, )) ti_updater_thread.start() time.sleep(1)