lianetm commented on code in PR #16638:
URL: https://github.com/apache/kafka/pull/16638#discussion_r1686693862
##########
clients/src/test/java/org/apache/kafka/clients/consumer/KafkaConsumerTest.java:
##########
@@ -3399,4 +3424,11 @@ public void configure(Map<String, ?> configs) {
CLIENT_IDS.add(configs.get(ConsumerConfig.CLIENT_ID_CONFIG).toString());
}
}
+
+ private Boolean isAyncConsumer(GroupProtocol groupProtocol) {
+ if (groupProtocol == GroupProtocol.CONSUMER) {
+ return true;
+ }
+ return false;
Review Comment:
```suggestion
return groupProtocol == GroupProtocol.CONSUMER);
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]