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

Method _list_feature_services

sdk/python/feast/infra/registry/sql.py:923–934  ·  view source on GitHub ↗
(
        self, project: str, tags: Optional[dict[str, str]], **kwargs
    )

Source from the content-addressed store, hash-verified

921 raise DataSourceObjectNotFoundException(name, project)
922
923 def _list_feature_services(
924 self, project: str, tags: Optional[dict[str, str]], **kwargs
925 ) -> List[FeatureService]:
926 return self._list_objects(
927 feature_services,
928 project,
929 FeatureServiceProto,
930 FeatureService,
931 "feature_service_proto",
932 tags=tags,
933 **kwargs,
934 )
935
936 def _list_feature_views(
937 self, project: str, tags: Optional[dict[str, str]], **kwargs

Callers

nothing calls this directly

Calls 1

_list_objectsMethod · 0.95

Tested by

no test coverage detected