Skip to content

Commit

Permalink
fix LOGBACK-1219
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Jul 29, 2021
1 parent 2484ab3 commit e84a52d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -263,7 +263,7 @@ public String getMethod() {
public String getSessionID() {
if (sessionID == null) {
if (httpRequest != null) {
final HttpSession session = httpRequest.getSession();
final HttpSession session = httpRequest.getSession(false);
if (session != null) {
sessionID = session.getId();
}
Expand Down

0 comments on commit e84a52d

Please sign in to comment.