Skip to content

Commit

Permalink
fix: Get rid of empty string name_alias during feature view project…
Browse files Browse the repository at this point in the history
…ion deserialization (#4116)

fix feature view projection warning

Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
  • Loading branch information
tokoko authored Apr 19, 2024
1 parent c3a102f commit 65056ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_view_projection.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def to_proto(self) -> FeatureViewProjectionProto:
def from_proto(proto: FeatureViewProjectionProto):
feature_view_projection = FeatureViewProjection(
name=proto.feature_view_name,
name_alias=proto.feature_view_name_alias,
name_alias=proto.feature_view_name_alias or None,
features=[],
join_key_map=dict(proto.join_key_map),
desired_features=[],
Expand Down

0 comments on commit 65056ce

Please sign in to comment.