From f7830d484c00603fbb8da68027a776c343060e9d Mon Sep 17 00:00:00 2001 From: johnfrum1234 Date: Sun, 15 Mar 2026 14:46:20 +0200 Subject: [PATCH] Let pipeline subprocess stderr flow to uvicorn terminal Removed stderr=subprocess.DEVNULL from POST /api/tasks/{id}/run so errors from background kin run are visible in the API server log. Co-Authored-By: Claude Opus 4.6 (1M context) --- web/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/web/api.py b/web/api.py index 6b0d001..2f131c4 100644 --- a/web/api.py +++ b/web/api.py @@ -236,7 +236,6 @@ def run_task(task_id: str): str(DB_PATH)], cwd=str(kin_root), stdout=subprocess.DEVNULL, - stderr=subprocess.DEVNULL, ) return JSONResponse({"status": "started", "task_id": task_id}, status_code=202)