lianetm commented on code in PR #15581: URL: https://github.com/apache/kafka/pull/15581#discussion_r1537629081
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java: ########## @@ -298,10 +303,13 @@ private void autoCommitSyncNowWithRetries(OffsetCommitRequestState requestAttemp if (error == null) { result.complete(null); } else { - if (error instanceof RetriableException || isStaleEpochErrorAndValidEpochAvailable(error)) { + if ((error instanceof RetriableException || isStaleEpochErrorAndValidEpochAvailable(error))) { Review Comment: this is failing the build actually -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org