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

Function health

sdk/python/feast/feature_server.py:622–627  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

620
621 @app.get("/health")
622 async def health():
623 try:
624 store.registry.list_projects(allow_cache=True)
625 return Response(status_code=status.HTTP_200_OK)
626 except Exception:
627 return Response(status_code=status.HTTP_503_SERVICE_UNAVAILABLE)
628
629 @app.post("/chat")
630 async def chat(request: ChatRequest):

Callers

nothing calls this directly

Calls 1

list_projectsMethod · 0.45

Tested by

no test coverage detected