frankvicky commented on code in PR #19167:
URL: https://github.com/apache/kafka/pull/19167#discussion_r2016857591


##########
clients/src/main/java/org/apache/kafka/common/requests/FetchResponse.java:
##########
@@ -89,7 +89,7 @@ public FetchResponseData data() {
      */
     public FetchResponse(FetchResponseData fetchResponseData) {
         super(ApiKeys.FETCH);
-        this.data = fetchResponseData;
+        this.data = convertNullRecordsToEmpty(fetchResponseData);

Review Comment:
   Make sense. It could also avoid overheads for clients.
   Does this approach also need to apply to `ShareFetchResponse`?



-- 
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

Reply via email to