jolshan commented on a change in pull request #9944: URL: https://github.com/apache/kafka/pull/9944#discussion_r652228425
########## File path: core/src/main/scala/kafka/server/ReplicaFetcherThread.scala ########## @@ -294,8 +296,9 @@ class ReplicaFetcherThread(name: String, val fetchRequestOpt = if (fetchData.sessionPartitions.isEmpty && fetchData.toForget.isEmpty) { None } else { + val version: Short = if (fetchRequestVersion >= 13 && !fetchData.canUseTopicIds) 12 else fetchRequestVersion Review comment: This one is slightly different as we are checking the IBP to get fetchRequestVersion. We could have an IBP where the version is lower than 12. -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org