Skip to content

Commit 65056ce

Browse files
authored
fix: Get rid of empty string name_alias during feature view projection deserialization (#4116)
fix feature view projection warning Signed-off-by: tokoko <togurg14@freeuni.edu.ge>
1 parent c3a102f commit 65056ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/feature_view_projection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def to_proto(self) -> FeatureViewProjectionProto:
5353
def from_proto(proto: FeatureViewProjectionProto):
5454
feature_view_projection = FeatureViewProjection(
5555
name=proto.feature_view_name,
56-
name_alias=proto.feature_view_name_alias,
56+
name_alias=proto.feature_view_name_alias or None,
5757
features=[],
5858
join_key_map=dict(proto.join_key_map),
5959
desired_features=[],

0 commit comments

Comments
 (0)