Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
offline store init doesnt make sense
Signed-off-by: Rob Howley <howley.robert@gmail.com>
  • Loading branch information
robhowley committed Oct 23, 2024
commit 7793d99f3f39b834f87b3f3818757025031011f2
6 changes: 0 additions & 6 deletions sdk/python/feast/infra/offline_stores/offline_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,3 @@ def get_table_column_names_and_types_from_data_source(
data_source: DataSource object
"""
return data_source.get_table_column_names_and_types(config=config)

async def initialize(self, config: RepoConfig) -> None:
pass

async def close(self) -> None:
pass
2 changes: 0 additions & 2 deletions sdk/python/feast/infra/passthrough_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,6 @@ def get_table_column_names_and_types_from_data_source(

async def initialize(self, config: RepoConfig) -> None:
await self.online_store.initialize(config)
await self.offline_store.initialize(config)

async def close(self) -> None:
await self.online_store.close()
await self.offline_store.close()