Restored session existance check before OIDC/UMA ticket related checks #9

Merged
massimiliano.assante merged 2 commits from mauro.mugnaini/threadlocal-vars-cleaner:master into master 2021-05-03 11:33:16 +02:00
1 changed files with 3 additions and 4 deletions
Showing only changes of commit 99b38ef4b7 - Show all commits

View File

@ -74,12 +74,11 @@ public class SmartGearsPortalValve extends ValveBase {
// user cannot be null otherwise also the getCurrentUsername(request) returned null username in previous lines
_log.debug("Getting current session");
HttpSession session = request.getSession(false);
if (session == null) {
_log.debug("Session is null, cannot continue");
return;
} else {
if (session != null) {
OIDCUmaUtil.checkUMATicketAndProvideInThreadLocal(request, (HttpServletResponse) resp, user,
session, scope);
} else {
_log.debug("Session is null, cannot continue");
}
//_log.trace("Security token set OK for " + username + " in scope " + scope);