We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe10b1 commit a040c95Copy full SHA for a040c95
src/spaceone/cost_analysis/manager/budget_usage_manager.py
@@ -328,9 +328,9 @@ def _get_user_info_map_from_recipients(
328
329
user_ids = recipients.get("users", [])
330
role_types = recipients.get("role_types", [])
331
- service_account_manager = recipients.get("service_account_manager", False)
+ service_account_manager = recipients.get("service_account_manager", "DISABLED")
332
333
- if service_account_manager:
+ if service_account_manager == "ENABLED":
334
service_account_info = identity_mgr.get_service_account(
335
service_account_id, domain_id, workspace_id
336
)
0 commit comments