From 3081f2ae665c9aecebd298bbef6989ea8940e5bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 17:21:20 +0100 Subject: [PATCH] thread manager update 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 9740c83..ba6ee4b 100644 --- a/server/app.py +++ b/server/app.py @@ -10,7 +10,7 @@ import sys from multiprocessing import Process, Manager thread_manager = Manager() -TUBE_INDEX = thread_manager.Array() +TUBE_INDEX = thread_manager.list() app = Flask(__name__)