nakomis commented on a change in pull request #1096:
URL: https://github.com/apache/brooklyn-server/pull/1096#discussion_r421375408
##########
File path:
rest/rest-resources/src/main/java/org/apache/brooklyn/rest/util/MultiSessionAttributeAdapter.java
##########
@@ -217,7 +219,17 @@ private void invalidateAllSession(HttpSession
preferredSession, HttpSession loca
private HttpSession findValidPreferredSession(HttpSession
localSession, HttpServletRequest optionalRequest) {
if (localSession instanceof Session) {
SessionHandler preferredHandler =
getPreferredJettyHandler((Session)localSession, true, true);
- HttpSession preferredSession = preferredHandler==null ? null :
preferredHandler.getHttpSession(localSession.getId());
+
+ HttpSession preferredSession
+ if (preferredHandler == null) {
Review comment:
Doh! I'd written it for `== null` then changed the logic and forgot to
change the check...
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]