(store: FeatureStore)
| 579 | |
| 580 | |
| 581 | def _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 | |
| 591 | def start_server( |