Skip to content

Commit 69527f9

Browse files
committed
Merge branch '6.2.x'
2 parents bade66e + 386e0a7 commit 69527f9

File tree

1 file changed

+2
-2
lines changed
  • docs/modules/ROOT/pages/reactive/authentication

1 file changed

+2
-2
lines changed

docs/modules/ROOT/pages/reactive/authentication/logout.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Java::
2020
@Bean
2121
SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception {
2222
DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler(
23-
new WebSessionServerLogoutHandler(), new SecurityContextServerLogoutHandler()
23+
new SecurityContextServerLogoutHandler(), new WebSessionServerLogoutHandler()
2424
);
2525
2626
http
@@ -38,7 +38,7 @@ Kotlin::
3838
@Bean
3939
fun http(http: ServerHttpSecurity): SecurityWebFilterChain {
4040
val customLogoutHandler = DelegatingServerLogoutHandler(
41-
WebSessionServerLogoutHandler(), SecurityContextServerLogoutHandler()
41+
SecurityContextServerLogoutHandler(), WebSessionServerLogoutHandler()
4242
)
4343
4444
return http {

0 commit comments

Comments
 (0)