fix: setup the acs url while creating saml client (#9744)

This commit is contained in:
Karan Balani
2025-12-02 01:03:43 +05:30
committed by GitHub
parent 0b0d622f6b
commit a7e9d442b7
2 changed files with 2 additions and 2 deletions

View File

@@ -71,6 +71,7 @@ def create_saml_client(
"saml_signature_canonicalization_method": "http://www.w3.org/2001/10/xml-exc-c14n#",
"saml.onetimeuse.condition": "false",
"saml.server.signature.keyinfo.xmlSigKeyInfoKeyNameTransformer": "NONE",
"saml_assertion_consumer_url_post": urljoin(f"{signoz.self.host_configs['8080'].base()}", callback_path)
},
"authenticationFlowBindingOverrides": {},
"fullScopeAllowed": True,

View File

@@ -93,8 +93,7 @@ def test_create_auth_domain(
f"{signoz.self.host_configs['8080'].address}:{signoz.self.host_configs['8080'].port}",
{
"saml_idp_initiated_sso_url_name": "idp-initiated-saml-test",
"saml_idp_initiated_sso_relay_state": relay_state_url,
"saml_assertion_consumer_url_post": signoz.self.host_configs["8080"].get("/api/v1/complete/saml")
"saml_idp_initiated_sso_relay_state": relay_state_url
}
)