dajac commented on a change in pull request #11331: URL: https://github.com/apache/kafka/pull/11331#discussion_r744875433
########## File path: core/src/main/scala/kafka/server/ReplicaFetcherThread.scala ########## @@ -305,9 +304,10 @@ class ReplicaFetcherThread(name: String, } else { val version: Short = if (fetchRequestVersion >= 13 && !fetchData.canUseTopicIds) 12 else fetchRequestVersion val requestBuilder = FetchRequest.Builder - .forReplica(version, replicaId, maxWait, minBytes, fetchData.toSend, fetchData.topicIds) + .forReplica(version, replicaId, maxWait, minBytes, fetchData.toSend) .setMaxBytes(maxBytes) - .toForget(fetchData.toForget) + .removed(fetchData.toForget) + .replaced(fetchData.toReplace) Review comment: `buildFetch` seems to be well isolated so it should be quite easy to write a few unit tests for it. `buildFetch` returns a `Builder` so you will have to build the request in order to inspect it. -- 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