Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jan 5, 2025
1 parent 6ef0216 commit 509b56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agixt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 509b56f

Please sign in to comment.