MCPcopy
hub / github.com/feast-dev/feast / GetFeatureService

Method GetFeatureService

sdk/python/feast/registry_server.py:737–747  ·  view source on GitHub ↗
(
        self, request: RegistryServer_pb2.GetFeatureServiceRequest, context
    )

Source from the content-addressed store, hash-verified

735 return Empty()
736
737 def GetFeatureService(
738 self, request: RegistryServer_pb2.GetFeatureServiceRequest, context
739 ):
740 return assert_permissions(
741 resource=self.proxied_registry.get_feature_service(
742 name=request.name,
743 project=request.project,
744 allow_cache=request.allow_cache,
745 ),
746 actions=[AuthzedAction.DESCRIBE],
747 ).to_proto()
748
749 def ListFeatureServices(
750 self, request: RegistryServer_pb2.ListFeatureServicesRequest, context

Callers

nothing calls this directly

Calls 3

assert_permissionsFunction · 0.90
to_protoMethod · 0.45
get_feature_serviceMethod · 0.45

Tested by

no test coverage detected