CalvinConfluent commented on code in PR #13323: URL: https://github.com/apache/kafka/pull/13323#discussion_r1123476762
########## clients/src/main/java/org/apache/kafka/common/requests/FetchRequest.java: ########## @@ -337,8 +362,27 @@ public AbstractResponse getErrorResponse(int throttleTimeMs, Throwable e) { .setResponses(topicResponseList)); } + public String clusterId() { + return data.clusterId(); + } + + public List<FetchTopic> topics() { + return data.topics(); + } + + public int maxWaitMs() { + return data.maxWaitMs(); + } Review Comment: It is only used by KafkaRaftClient. -- 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