Skip to content

Commit 01770e2

Browse files
updated stream feature view piece
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent b223feb commit 01770e2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sdk/python/feast/feature_store.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -888,9 +888,8 @@ def apply(
888888
):
889889
if isinstance(fv, FeatureView):
890890
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)
891+
if fv.stream_source:
892+
data_sources_set_to_update.add(fv.stream_source)
894893
if isinstance(fv, OnDemandFeatureView):
895894
for source_fvp in fv.source_feature_view_projections:
896895
odfv_batch_source: Optional[DataSource] = (

0 commit comments

Comments
 (0)