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

Method ApplyFeatureService

sdk/python/feast/registry_server.py:718–735  ·  view source on GitHub ↗
(
        self, request: RegistryServer_pb2.ApplyFeatureServiceRequest, context
    )

Source from the content-addressed store, hash-verified

716 )
717
718 def ApplyFeatureService(
719 self, request: RegistryServer_pb2.ApplyFeatureServiceRequest, context
720 ):
721 feature_service = cast(
722 FeatureService,
723 assert_permissions_to_update(
724 resource=FeatureService.from_proto(request.feature_service),
725 getter=self.proxied_registry.get_feature_service,
726 project=request.project,
727 ),
728 )
729 self.proxied_registry.apply_feature_service(
730 feature_service=feature_service,
731 project=request.project,
732 commit=request.commit,
733 )
734
735 return Empty()
736
737 def GetFeatureService(
738 self, request: RegistryServer_pb2.GetFeatureServiceRequest, context

Callers

nothing calls this directly

Calls 3

from_protoMethod · 0.45
apply_feature_serviceMethod · 0.45

Tested by

no test coverage detected