Explorar o código

Merge branch '6.1.x' into 6.2.x

Closes gh-14682
Josh Cummings hai 1 ano
pai
achega
386e0a7b46

+ 2 - 2
docs/modules/ROOT/pages/reactive/authentication/logout.adoc

@@ -20,7 +20,7 @@ Java::
 @Bean
 @Bean
 SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception {
 SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception {
     DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler(
     DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler(
-            new WebSessionServerLogoutHandler(), new SecurityContextServerLogoutHandler()
+            new SecurityContextServerLogoutHandler(), new WebSessionServerLogoutHandler()
     );
     );
 
 
     http
     http
@@ -38,7 +38,7 @@ Kotlin::
 @Bean
 @Bean
 fun http(http: ServerHttpSecurity): SecurityWebFilterChain {
 fun http(http: ServerHttpSecurity): SecurityWebFilterChain {
     val customLogoutHandler = DelegatingServerLogoutHandler(
     val customLogoutHandler = DelegatingServerLogoutHandler(
-        WebSessionServerLogoutHandler(), SecurityContextServerLogoutHandler()
+        SecurityContextServerLogoutHandler(), WebSessionServerLogoutHandler()
     )
     )
     
     
     return http {
     return http {