Merge branch '7.0.x'

This commit is contained in:
Josh Cummings 2026-03-11 16:47:02 -06:00
commit ddb825f7a5
No known key found for this signature in database
GPG Key ID: 869B37A20E876129

View File

@ -53,6 +53,7 @@ public final class CacheSaml2AuthenticationRequestRepository
@Override
public void saveAuthenticationRequest(@Nullable AbstractSaml2AuthenticationRequest authenticationRequest,
HttpServletRequest request, HttpServletResponse response) {
Assert.notNull(authenticationRequest, "authenticationRequest must not be null");
String relayState = request.getParameter(Saml2ParameterNames.RELAY_STATE);
Assert.notNull(relayState, "relayState must not be null");
this.cache.put(relayState, authenticationRequest);