Skip to content

Commit

Permalink
Merge pull request #120 from whdalsrnt/master
Browse files Browse the repository at this point in the history
fix: fix wrong field type in event rule info
  • Loading branch information
whdalsrnt authored Feb 18, 2024
2 parents 870daa5 + 4893cb2 commit 6d93898
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/spaceone/monitoring/info/event_rule_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ def EventRuleActionsInfo(actions_data):
info = {}

for key, value in actions_data.items():
if key == "add_additional_info":
if key in [
"add_additional_info",
"match_service_account",
]:
info[key] = change_struct_type(value)
else:
info[key] = value
Expand Down

0 comments on commit 6d93898

Please sign in to comment.