From 509b56fc486bde24b620d59f8993f8b57315651a Mon Sep 17 00:00:00 2001 From: Josh XT Date: Sat, 4 Jan 2025 21:51:01 -0500 Subject: [PATCH] fix ref --- agixt/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agixt/app.py b/agixt/app.py index fe54373e5a2b..3b36be42bef5 100644 --- a/agixt/app.py +++ b/agixt/app.py @@ -41,7 +41,7 @@ @asynccontextmanager async def lifespan(app: FastAPI): workspace_manager.start_file_watcher() - threading.Thread(target=task_monitor.start, daemon=True).start() + threading.Thread(target=task_monitor.start).start() NGROK_TOKEN = getenv("NGROK_TOKEN") if NGROK_TOKEN: from pyngrok import ngrok