Skip to content

Commit

Permalink
fix: Add Stream Feature Views to helper that collect Feature View nam…
Browse files Browse the repository at this point in the history
…es (feast-dev#3582)

add sfv to helper that collects fvs

Signed-off-by: Kevin Loftis <loftiskg@gmail.com>
  • Loading branch information
loftiskg authored Apr 21, 2023
1 parent 6794338 commit 7854f63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sdk/python/feast/infra/registry/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,4 +884,7 @@ def _existing_feature_view_names_to_fvs(self) -> Dict[str, Message]:
request_fvs = {
fv.spec.name: fv for fv in self.cached_registry_proto.request_feature_views
}
return {**odfvs, **fvs, **request_fvs}
sfv = {
fv.spec.name: fv for fv in self.cached_registry_proto.stream_feature_views
}
return {**odfvs, **fvs, **request_fvs, **sfv}

0 comments on commit 7854f63

Please sign in to comment.