We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ef5137 commit dfd5eaeCopy full SHA for dfd5eae
1 file changed
sdk/python/feast/feature_store.py
@@ -930,7 +930,10 @@ def apply(
930
views_to_delete = [
931
ob
932
for ob in objects_to_delete
933
- if isinstance(ob, FeatureView) or isinstance(ob, BatchFeatureView)
+ if (
934
+ (isinstance(ob, FeatureView) or isinstance(ob, BatchFeatureView))
935
+ and not isinstance(ob, StreamFeatureView)
936
+ )
937
]
938
request_views_to_delete = [
939
ob for ob in objects_to_delete if isinstance(ob, RequestFeatureView)
0 commit comments