We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f58a039 commit 6568456Copy full SHA for 6568456
sdk/python/feast/infra/offline_stores/offline_store.py
@@ -388,9 +388,3 @@ def get_table_column_names_and_types_from_data_source(
388
data_source: DataSource object
389
"""
390
return data_source.get_table_column_names_and_types(config=config)
391
-
392
- async def initialize(self, config: RepoConfig) -> None:
393
- pass
394
395
- async def close(self) -> None:
396
sdk/python/feast/infra/passthrough_provider.py
@@ -521,8 +521,6 @@ def get_table_column_names_and_types_from_data_source(
521
522
async def initialize(self, config: RepoConfig) -> None:
523
await self.online_store.initialize(config)
524
- await self.offline_store.initialize(config)
525
526
async def close(self) -> None:
527
await self.online_store.close()
528
- await self.offline_store.close()
0 commit comments