Skip to content

Commit 7287662

Browse files
authored
feat: Change get_online_features signature, move online retrieval functions to utils (#4278)
1 parent 4cb24fc commit 7287662

File tree

6 files changed

+869
-893
lines changed

6 files changed

+869
-893
lines changed

sdk/python/feast/feature_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def get_online_features(body=Depends(get_body)):
9696

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

99-
response_proto = store._get_online_features(
99+
response_proto = store.get_online_features(
100100
features=features,
101-
entity_values=body["entities"],
101+
entity_rows=body["entities"],
102102
full_feature_names=full_feature_names,
103103
).proto
104104

0 commit comments

Comments
 (0)