File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
sdk/python/feast/infra/registry Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -269,17 +269,17 @@ def __init__(
269
269
registry_config .thread_pool_executor_worker_count
270
270
)
271
271
self .purge_feast_metadata = registry_config .purge_feast_metadata
272
+ super ().__init__ (
273
+ project = project ,
274
+ cache_ttl_seconds = registry_config .cache_ttl_seconds ,
275
+ cache_mode = registry_config .cache_mode ,
276
+ )
272
277
# Sync feast_metadata to projects table
273
278
# when purge_feast_metadata is set to True, Delete data from
274
279
# feast_metadata table and list_project_metadata will not return any data
275
280
self ._sync_feast_metadata_to_projects_table ()
276
281
if not self .purge_feast_metadata :
277
282
self ._maybe_init_project_metadata (project )
278
- super ().__init__ (
279
- project = project ,
280
- cache_ttl_seconds = registry_config .cache_ttl_seconds ,
281
- cache_mode = registry_config .cache_mode ,
282
- )
283
283
284
284
def _sync_feast_metadata_to_projects_table (self ):
285
285
feast_metadata_projects : dict = {}
You can’t perform that action at this time.
0 commit comments