I have a stream feature view running fine in 0.29. When upgrading to 0.34, getting error on doing feast apply
“feast.errors.ConflictingFeatureViewNames: The feature view name: job_stream refers to feature views of different types.”
Printing type in registry.py in function _check_conflicting_feature_view_names where error is coming.
“print(“feature view instance”, feature_view.proto_class, type(name_to_fv_protos.get(feature_view.name)))”
getting output:
feature view instance <class ‘feast.core.FeatureView_pb2.FeatureView’> <class ‘feast.core.StreamFeatureView_pb2.StreamFeatureView’>
I feel like this might be because of #3582