Skip to content

Commit

Permalink
feat: Change get_online_features signature, move online retrieval fun…
Browse files Browse the repository at this point in the history
…ctions to utils (#4278)
  • Loading branch information
tokoko committed Jun 17, 2024
1 parent 4cb24fc commit 7287662
Show file tree
Hide file tree
Showing 6 changed files with 869 additions and 893 deletions.
4 changes: 2 additions & 2 deletions sdk/python/feast/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,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

0 comments on commit 7287662

Please sign in to comment.