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

Method update_infra

sdk/python/feast/infra/registry/remote.py:567–571  ·  view source on GitHub ↗
(self, infra: Infra, project: str, commit: bool = True)

Source from the content-addressed store, hash-verified

565 return [ProjectMetadata.from_proto(pm) for pm in response.project_metadata]
566
567 def update_infra(self, infra: Infra, project: str, commit: bool = True):
568 request = RegistryServer_pb2.UpdateInfraRequest(
569 infra=infra.to_proto(), project=project, commit=commit
570 )
571 self.stub.UpdateInfra(request)
572
573 def get_infra(self, project: str, allow_cache: bool = False) -> Infra:
574 request = RegistryServer_pb2.GetInfraRequest(

Callers

nothing calls this directly

Calls 2

to_protoMethod · 0.45
UpdateInfraMethod · 0.45

Tested by

no test coverage detected