zhaohaidao commented on code in PR #14271: URL: https://github.com/apache/kafka/pull/14271#discussion_r1304575969
########## clients/src/main/resources/common/message/ListGroupsRequest.json: ########## @@ -23,11 +23,15 @@ // Version 3 is the first flexible version. // // Version 4 adds the StatesFilter field (KIP-518). - "validVersions": "0-4", + // + // Version 5 adds the TypesFilter field (KIP-848). + "validVersions": "0-5", "flexibleVersions": "3+", "fields": [ { "name": "StatesFilter", "type": "[]string", "versions": "4+", "about": "The states of the groups we want to list. If empty all groups are returned with their state." - } + }, + { "name": "TypesFilter", "type": "[]string", "versions": "5+", + "about": "The types of the groups we want to list. If empty all groups are returned" } Review Comment: The test will use the code generated by the new protocol. If the protocol change is to be placed in the second pr, the corresponding test code also needs to be removed in this pr. I don't know if my understanding is correct -- 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