You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by GitBox <gi...@apache.org> on 2021/09/06 16:30:13 UTC

[GitHub] [kafka] ijuma commented on a change in pull request #11301: KAFKA-13276: Prefer KafkaFuture in admin Result constructors

ijuma commented on a change in pull request #11301:
URL: https://github.com/apache/kafka/pull/11301#discussion_r703003174



##########
File path: clients/src/main/java/org/apache/kafka/clients/admin/DescribeConsumerGroupsResult.java
##########
@@ -35,9 +34,9 @@
 @InterfaceStability.Evolving
 public class DescribeConsumerGroupsResult {
 
-    private final Map<CoordinatorKey, KafkaFutureImpl<ConsumerGroupDescription>> futures;
+    private final Map<CoordinatorKey, KafkaFuture<ConsumerGroupDescription>> futures;
 
-    public DescribeConsumerGroupsResult(final Map<CoordinatorKey, KafkaFutureImpl<ConsumerGroupDescription>> futures) {
+    public DescribeConsumerGroupsResult(final Map<CoordinatorKey, KafkaFuture<ConsumerGroupDescription>> futures) {

Review comment:
       Is this a source and binary compatible 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-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org