Skip to content

Commit 80a5028

Browse files
saml2Login filterProcessingUrl should be loginProcessingUrl
Closes gh-13417
1 parent c30baca commit 80a5028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/modules/ROOT/pages/servlet/saml2/login/authentication.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Java::
5656
SecurityFilterChain securityFilters(HttpSecurity http) throws Exception {
5757
http
5858
// ...
59-
.saml2Login((saml2) -> saml2.filterProcessingUrl("/saml2/login/sso"))
59+
.saml2Login((saml2) -> saml2.loginProcessingUrl("/saml2/login/sso"))
6060
// ...
6161
6262
return http.build();
@@ -72,7 +72,7 @@ fun securityFilters(val http: HttpSecurity): SecurityFilterChain {
7272
http {
7373
// ...
7474
.saml2Login {
75-
filterProcessingUrl = "/saml2/login/sso"
75+
loginProcessingUrl = "/saml2/login/sso"
7676
}
7777
// ...
7878
}

0 commit comments

Comments
 (0)