jsancio commented on code in PR #19661: URL: https://github.com/apache/kafka/pull/19661#discussion_r2082446480
########## clients/src/main/java/org/apache/kafka/common/record/RecordBatchIterator.java: ########## @@ -41,7 +41,7 @@ protected T makeNext() { } catch (EOFException e) { throw new CorruptRecordException("Unexpected EOF while attempting to read the next batch", e); } catch (IOException e) { - throw new KafkaException(e); + throw new UncheckedIOException(e); Review Comment: Removed this change. -- 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