Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
refactor online retrieval functions from feature store to utils
Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
  • Loading branch information
tokoko committed Jun 13, 2024
commit 7f98c952fc3a608e27923da45e0e381b679eeefa
4 changes: 2 additions & 2 deletions sdk/python/feast/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def get_online_features(body=Depends(get_body)):

full_feature_names = body.get("full_feature_names", False)

response_proto = store._get_online_features(
response_proto = store.get_online_features(
features=features,
entity_values=body["entities"],
entity_rows=body["entities"],
full_feature_names=full_feature_names,
).proto

Expand Down
Loading