There was an error while loading. Please reload this page.
1 parent 710169d commit 24f5ae7Copy full SHA for 24f5ae7
1 file changed
sdk/python/feast/repo_operations.py
@@ -138,7 +138,10 @@ def parse_repo(repo_root: Path) -> RepoContents:
138
# Don't add if the push source's batch source is a duplicate of an existing batch source
139
if push_source_dep not in data_sources_set:
140
res.data_sources.append(push_source_dep)
141
- elif isinstance(obj, StreamFeatureView):
+ elif (
142
+ isinstance(obj, StreamFeatureView)
143
+ and not any((obj is sfv) for sfv in res.stream_feature_views)
144
+ ):
145
res.stream_feature_views.append(obj)
146
if (
147
isinstance(obj.stream_source, PushSource)
0 commit comments