Skip to content

Commit 022c03a

Browse files
Correct method name
Closes gh-17031 Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 1a9f62d commit 022c03a

File tree

1 file changed

+1
-1
lines changed
  • docs/modules/ROOT/pages/servlet/authentication

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ SecurityContextLogoutHandler logoutHandler = new SecurityContextLogoutHandler();
402402
@PostMapping("/my/logout")
403403
public String performLogout(Authentication authentication, HttpServletRequest request, HttpServletResponse response) {
404404
// .. perform logout
405-
this.logoutHandler.doLogout(request, response, authentication);
405+
this.logoutHandler.logout(request, response, authentication);
406406
return "redirect:/home";
407407
}
408408
----

0 commit comments

Comments
 (0)