MCPcopy Index your code
hub / github.com/feast-dev/feast / health

Function health

sdk/python/feast/ui_server.py:788–793  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

786
787 @app.get("/health")
788 def health():
789 try:
790 store.registry.list_projects(allow_cache=True)
791 return Response(status_code=status.HTTP_200_OK)
792 except Exception:
793 return Response(status_code=status.HTTP_503_SERVICE_UNAVAILABLE)
794
795 logger.info("REST registry API mounted at /api/v1")
796

Callers

nothing calls this directly

Calls 1

list_projectsMethod · 0.45

Tested by

no test coverage detected