pivotal-jbarrett commented on code in PR #7603: URL: https://github.com/apache/geode/pull/7603#discussion_r855408529
########## geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/MessageDispatcher.java: ########## @@ -533,21 +533,28 @@ private boolean handleAuthenticationExpiredException(AuthenticationExpiredExcept throws InterruptedException { long reAuthenticateWaitTime = getSystemProperty(RE_AUTHENTICATE_WAIT_TIME, DEFAULT_RE_AUTHENTICATE_WAIT_TIME); + // for old client, don't wait for re-auth but unregister this proxy completely. + if (getProxy().getVersion().isOlderThan(RE_AUTHENTICATION_START_VERSION)) { Review Comment: Something like: ```java if (handledUnsupportedClient(...)) { return true; } ``` -- 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