Skip to content

Commit

Permalink
fix: removed experimental optional from permission proto
Browse files Browse the repository at this point in the history
Signed-off-by: Theodor Mihalache <[email protected]>
  • Loading branch information
tmihalac committed Aug 6, 2024
1 parent 2e41b21 commit b232ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/permissions/permission.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def to_proto(self) -> PermissionProto:
name=self.name,
types=types,
with_subclasses=self.with_subclasses,
name_pattern=self.name_pattern if self.name_pattern is not None else None,
name_pattern=self.name_pattern if self.name_pattern is not None else "",
actions=actions,
policy=self.policy.to_proto(),
tags=self._tags if self._tags is not None else None,
Expand Down

0 comments on commit b232ac5

Please sign in to comment.