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

Method GetProject

sdk/python/feast/registry_server.py:1101–1108  ·  view source on GitHub ↗
(self, request: RegistryServer_pb2.GetProjectRequest, context)

Source from the content-addressed store, hash-verified

1099 return Empty()
1100
1101 def GetProject(self, request: RegistryServer_pb2.GetProjectRequest, context):
1102 return assert_permissions(
1103 self.proxied_registry.get_project(
1104 name=request.name,
1105 allow_cache=request.allow_cache,
1106 ),
1107 actions=[AuthzedAction.DESCRIBE],
1108 ).to_proto()
1109
1110 def ListProjects(self, request: RegistryServer_pb2.ListProjectsRequest, context):
1111 paginated_projects, pagination_metadata = apply_pagination_and_sorting(

Callers

nothing calls this directly

Calls 3

assert_permissionsFunction · 0.90
to_protoMethod · 0.45
get_projectMethod · 0.45

Tested by

no test coverage detected