Skip to content

Commit 18ca377

Browse files
committed
Fix Python integration tests
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent 1b9d808 commit 18ca377

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/python/feast/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def feature_view_list(ctx: click.Context):
334334
if isinstance(feature_view, FeatureView):
335335
entities.update(feature_view.entities)
336336
elif isinstance(feature_view, OnDemandFeatureView):
337-
for backing_fv in feature_view.input_feature_view_projections.values():
337+
for backing_fv in feature_view.source_feature_view_projections.values():
338338
entities.update(store.get_feature_view(backing_fv.name).entities)
339339
table.append(
340340
[

sdk/python/feast/feature_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def apply(
672672
data_sources_set_to_update.add(rfv.request_data_source)
673673

674674
for odfv in odfvs_to_update:
675-
for v in odfv.input_request_data_sources.values():
675+
for v in odfv.source_request_data_sources.values():
676676
data_sources_set_to_update.add(v)
677677

678678
data_sources_to_update = list(data_sources_set_to_update)

0 commit comments

Comments
 (0)