pivotal-jbarrett commented on code in PR #7556: URL: https://github.com/apache/geode/pull/7556#discussion_r843311029
########## geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/MessageDispatcher.java: ########## @@ -193,6 +194,15 @@ public boolean isWaitingForReAuthentication() { return waitForReAuthenticationStartTime > 0; } + private volatile boolean subjectUpdated = false; Review Comment: `volatile` is redundant since all access is performed under `synchronized` block. -- 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. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org