We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01770e2 commit 7606481Copy full SHA for 7606481
sdk/python/feast/feature_store.py
@@ -888,8 +888,9 @@ def apply(
888
):
889
if isinstance(fv, FeatureView):
890
data_sources_set_to_update.add(fv.batch_source)
891
- if fv.stream_source:
892
- data_sources_set_to_update.add(fv.stream_source)
+ if hasattr(fv, 'stream_source'):
+ if fv.stream_source:
893
+ data_sources_set_to_update.add(fv.stream_source)
894
if isinstance(fv, OnDemandFeatureView):
895
for source_fvp in fv.source_feature_view_projections:
896
odfv_batch_source: Optional[DataSource] = (
0 commit comments