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

Function _init_auth_manager

sdk/python/feast/offline_server.py:581–588  ·  view source on GitHub ↗
(store: FeatureStore)

Source from the content-addressed store, hash-verified

579
580
581def _init_auth_manager(store: FeatureStore):
582 auth_type = str_to_auth_manager_type(store.config.auth_config.type)
583 init_security_manager(auth_type=auth_type, fs=store)
584 init_auth_manager(
585 auth_type=auth_type,
586 server_type=ServerType.ARROW,
587 auth_config=store.config.auth_config,
588 )
589
590
591def start_server(

Calls 3

str_to_auth_manager_typeFunction · 0.90
init_security_managerFunction · 0.90
init_auth_managerFunction · 0.90