tombentley commented on a change in pull request #11301: URL: https://github.com/apache/kafka/pull/11301#discussion_r705112124
########## File path: clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java ########## @@ -3178,7 +3178,8 @@ public DescribeConsumerGroupsResult describeConsumerGroups(final Collection<Stri DescribeConsumerGroupsHandler.newFuture(groupIds); DescribeConsumerGroupsHandler handler = new DescribeConsumerGroupsHandler(options.includeAuthorizedOperations(), logContext); invokeDriver(handler, future, options.timeoutMs); - return new DescribeConsumerGroupsResult(future.all()); + return new DescribeConsumerGroupsResult(future.all().entrySet().stream() Review comment: Indeed, I felt it wasn't worth trying to refactor the `DescribeConsumerGroupsHandler` at this point. -- 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