1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-21 20:59:10 +00:00

Use raise from in modules (#11097)

* Use raise from.

* Add changelog fragment.

* Add comment.
This commit is contained in:
Felix Fontein 2025-11-12 21:00:17 +01:00 committed by GitHub
parent 2b4333a033
commit 40aea793ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 60 additions and 39 deletions

View file

@ -214,11 +214,11 @@ def _token_request(module_params, payload):
return r["access_token"]
except ValueError as e:
raise KeycloakError(f"API returned invalid JSON when trying to obtain access token from {auth_url}: {e}")
except KeyError:
raise KeycloakError(f"API did not include access_token field in response from {auth_url}")
raise KeycloakError(f"API returned invalid JSON when trying to obtain access token from {auth_url}: {e}") from e
except KeyError as e:
raise KeycloakError(f"API did not include access_token field in response from {auth_url}") from e
except Exception as e:
raise KeycloakError(f"Could not obtain access token from {auth_url}: {e}", authError=e)
raise KeycloakError(f"Could not obtain access token from {auth_url}: {e}", authError=e) from e
def _request_token_using_credentials(module_params):