From bb46268eec30bf97cafe8eb3feb6feda1a6e5172 Mon Sep 17 00:00:00 2001 From: Madhu Kanoor Date: Thu, 28 Aug 2025 09:05:13 -0400 Subject: [PATCH] [AAP-52144] Remove AWX Prefix from the SAML migrator (#7072) We were adding an AWX prefix to SAML migrator --- awx/sso/utils/saml_migrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/sso/utils/saml_migrator.py b/awx/sso/utils/saml_migrator.py index af49391825..736cb4e843 100644 --- a/awx/sso/utils/saml_migrator.py +++ b/awx/sso/utils/saml_migrator.py @@ -143,7 +143,7 @@ class SAMLMigrator(BaseAuthenticatorMigrator): name = config_settings["name"] # Generate authenticator name and slug - authenticator_name = f"AWX-{category.replace('-', '_').title()}-{name}" + authenticator_name = f"{category.replace('-', '_').title()}-{name}" authenticator_slug = self._generate_authenticator_slug("saml", name) self._write_output(f"\n--- Processing {category} authenticator ---")