File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 [
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments