Skip to content

Commit c8650ed

Browse files
committed
fix: fix to_dict error when account sync (#199)
Signed-off-by: ImMin5 <[email protected]>
1 parent b95a030 commit c8650ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/spaceone/identity/service/job_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def sync_service_accounts(self, params: dict) -> None:
214214
job_vo: Job = self.job_mgr.get_job(domain_id, job_id, workspace_id)
215215
schema_vo = schema_mgr.get_schema(trusted_account_vo.secret_schema_id, domain_id)
216216
provider_vo: Provider = self.provider_mgr.get_provider(trusted_account_vo.provider, domain_id)
217-
plugin_info = provider_vo.plugin_info.to_dict()
217+
plugin_info = provider_vo.plugin_info
218218

219219
provider = provider_vo.provider
220220
sync_options = trusted_account_vo.sync_options or {}

0 commit comments

Comments
 (0)