Skip to content
Snippets Groups Projects
Commit cd570c65 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Merge branch 'index-out-of-bounds-fix'

Closes GH-48
parents c171a64e ebd847d7
Branches
No related merge requests found
Pipeline #10441 passed with warnings with stages
in 2 minutes and 9 seconds
......@@ -190,9 +190,9 @@ public class SessionServiceImpl extends DefaultEntityServiceImpl<Session> implem
logger.info("Deleted {} inactive guest sessions.", inactiveSessions.size());
dbLogger.log("cleanup", "type", "session",
"sessionCount", inactiveSessions.size(),
"questionCount", totalCount[1],
"answerCount", totalCount[2],
"commentCount", totalCount[3]);
"questionCount", totalCount[0],
"answerCount", totalCount[1],
"commentCount", totalCount[2]);
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment