From e898a2511a0da958ad65334b3777d2cc55d880d9 Mon Sep 17 00:00:00 2001 From: Felix Grzelka Date: Fri, 5 Jun 2026 07:29:53 +0000 Subject: [PATCH] rm other use of normalize_keycloak_url --- plugins/module_utils/identity/keycloak/keycloak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/identity/keycloak/keycloak.py b/plugins/module_utils/identity/keycloak/keycloak.py index e786485..b0be79e 100644 --- a/plugins/module_utils/identity/keycloak/keycloak.py +++ b/plugins/module_utils/identity/keycloak/keycloak.py @@ -203,7 +203,7 @@ def _token_request(module_params: dict[str, t.Any], payload: dict[str, t.Any]) - 'refresh_token' for type 'refresh_token'. :return: access token """ - base_url = normalize_keycloak_url(module_params["auth_keycloak_url"]) + base_url = module_params["auth_keycloak_url"] if not base_url.lower().startswith(("http", "https")): raise KeycloakError(f"auth_url '{base_url}' should either start with 'http' or 'https'.") auth_realm = module_params.get("auth_realm")