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

Method Commit

sdk/python/feast/registry_server.py:1217–1221  ·  view source on GitHub ↗
(self, request, context)

Source from the content-addressed store, hash-verified

1215 )
1216
1217 def Commit(self, request, context):
1218 for project in self.proxied_registry.list_projects(allow_cache=True):
1219 assert_permissions(resource=project, actions=[AuthzedAction.UPDATE])
1220 self.proxied_registry.commit()
1221 return Empty()
1222
1223 def Refresh(self, request, context):
1224 project = self.proxied_registry.get_project(

Callers

nothing calls this directly

Calls 3

assert_permissionsFunction · 0.90
list_projectsMethod · 0.45
commitMethod · 0.45

Tested by

no test coverage detected