(job_id: str)
| 222 | |
| 223 | @router.get("/monitoring/jobs/{job_id}", tags=["Monitoring"]) |
| 224 | async def get_job_status(job_id: str): |
| 225 | svc = _get_monitoring_service() |
| 226 | job = svc.get_job(job_id) |
| 227 | if job is None: |
| 228 | raise HTTPException(status_code=404, detail=f"Job '{job_id}' not found") |
| 229 | return job |
| 230 | |
| 231 | # ------------------------------------------------------------------ # |
| 232 | # Transient compute (not stored) |
nothing calls this directly
no test coverage detected