MCPcopy Create free account
hub / github.com/feast-dev/feast / get_job_status

Function get_job_status

sdk/python/feast/api/registry/rest/monitoring.py:224–229  ·  view source on GitHub ↗
(job_id: str)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

_get_monitoring_serviceFunction · 0.85
get_jobMethod · 0.45

Tested by

no test coverage detected