Skip to content

Commit a2302be

Browse files
committed
fix not implemented issue
1 parent 6e0ba03 commit a2302be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sdk/python/feast/infra/online_stores/online_store.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ def teardown(
135135
"""
136136
pass
137137

138-
@abstractmethod
139138
def retrieve_online_documents(
140139
self,
141140
config: RepoConfig,
@@ -159,4 +158,6 @@ def retrieve_online_documents(
159158
where the first item is the event timestamp for the row, and the second item is a dict of feature
160159
name to embeddings.
161160
"""
162-
pass
161+
raise NotImplementedError(
162+
f"Online store {self.__class__.__name__} does not support online retrieval"
163+
)

0 commit comments

Comments
 (0)