skaundinya15 commented on a change in pull request #10743: URL: https://github.com/apache/kafka/pull/10743#discussion_r657611619
########## File path: clients/src/main/java/org/apache/kafka/clients/admin/DeleteConsumerGroupsResult.java ########## @@ -29,9 +32,9 @@ */ @InterfaceStability.Evolving public class DeleteConsumerGroupsResult { - private final Map<String, KafkaFuture<Void>> futures; + private final Map<CoordinatorKey, KafkaFutureImpl<Void>> futures; - DeleteConsumerGroupsResult(final Map<String, KafkaFuture<Void>> futures) { + DeleteConsumerGroupsResult(Map<CoordinatorKey, KafkaFutureImpl<Void>> futures) { Review comment: @tombentley I see, thank you for the clarification. I guess in that case we have to stick with returning the `KafkaFutureImpl` in this situation then? Doesn't really seem to be a way around this otherwise. -- 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