lbradstreet commented on a change in pull request #10620: URL: https://github.com/apache/kafka/pull/10620#discussion_r633135023
########## File path: clients/src/main/java/org/apache/kafka/clients/producer/internals/IncompleteBatches.java ########## @@ -51,6 +51,14 @@ public void remove(ProducerBatch batch) { } } + public Iterable<ProduceRequestResult> requestResults() { + synchronized (incomplete) { + ArrayList<ProduceRequestResult> results = new ArrayList<>(this.incomplete.size()); + this.incomplete.forEach(incomplete -> results.add(incomplete.produceFuture)); + return results; Review comment: Done. -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org