From ed064b247720dd91400fd715702371d544177778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Otgaar?= Date: Tue, 7 Oct 2025 18:30:39 +0200 Subject: [PATCH] fix: doesn't crash your entire WSL system when running. --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 9f6fc4c..1b53eac 100644 --- a/main.py +++ b/main.py @@ -21,8 +21,8 @@ async def lifespan(app: FastAPI): subport = 5555 pubport = 5556 - asyncio.create_task(zmq_subscriber(subport)) - asyncio.create_task(zmq_publisher(pubport)) + # asyncio.create_task(zmq_subscriber(subport)) + # asyncio.create_task(zmq_publisher(pubport)) sse_queue = asyncio.Queue()