FrankYang0529 commented on code in PR #16673: URL: https://github.com/apache/kafka/pull/16673#discussion_r1723052820
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/ConsumerUtils.java: ########## @@ -231,6 +231,8 @@ public static <T> T getResult(Future<T> future) { try { return future.get(); } catch (ExecutionException e) { + if (e.getCause() instanceof IllegalStateException) Review Comment: I updated it as well. Let's wait for CI result. Thanks for catching it. -- 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