We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b223feb commit 01770e2Copy full SHA for 01770e2
sdk/python/feast/feature_store.py
@@ -888,9 +888,8 @@ def apply(
888
):
889
if isinstance(fv, FeatureView):
890
data_sources_set_to_update.add(fv.batch_source)
891
- if isinstance(fv, StreamFeatureView):
892
- if fv.stream_source:
893
- data_sources_set_to_update.add(fv.stream_source)
+ if fv.stream_source:
+ 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