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) <noreply@anthropic.com>
This commit is contained in:
parent
c129cf9d95
commit
f7830d484c
1 changed files with 0 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue