dongnuo123 commented on code in PR #14589:
URL: https://github.com/apache/kafka/pull/14589#discussion_r1373846331
##########
core/src/test/scala/unit/kafka/server/KafkaApisTest.scala:
##########
@@ -4385,15 +4451,39 @@ class KafkaApisTest {
.setGroupId("group-3")
.setErrorCode(Errors.INVALID_GROUP_ID.code)
- val expectedOffsetFetchResponse = new OffsetFetchResponseData()
- .setGroups(List(group1Response, group2Response, group3Response).asJava)
+ val group4Response = new
OffsetFetchResponseData.OffsetFetchResponseGroup()
Review Comment:
group3Response and group4Response are the same. I wanted to make sure when
```
group3Future.completeExceptionally(Errors.INVALID_GROUP_ID.exception)
group4Future.complete(group4Response)
```
handleOffsetFetch gives the same response.
--
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]