check for session id in path if url tracking mode is enabled (#2668)

Signed-off-by: Venkata Jaswanth U <aj.jaswanth@gmail.com>
This commit is contained in:
Venkata Jaswanth 2018-07-04 14:07:08 +05:30 committed by Jan Bartel
parent 42e939000d
commit 9d9189d476
1 changed files with 1 additions and 1 deletions

View File

@ -1654,7 +1654,7 @@ public class SessionHandler extends ScopedHandler
} }
} }
if (requested_session_id == null || session == null) if (isUsingURLs() && (requested_session_id == null || session == null))
{ {
String uri = request.getRequestURI(); String uri = request.getRequestURI();