dajac commented on code in PR #12870: URL: https://github.com/apache/kafka/pull/12870#discussion_r1054494189
########## core/src/main/scala/kafka/server/KafkaApis.scala: ########## @@ -1338,11 +1337,12 @@ class KafkaApis(val requestChannel: RequestChannel, /** * Handle an offset fetch request */ - def handleOffsetFetchRequest(request: RequestChannel.Request): Unit = { + def handleOffsetFetchRequest(request: RequestChannel.Request): CompletableFuture[Unit] = { val version = request.header.apiVersion if (version == 0) { // reading offsets from ZK handleOffsetFetchRequestV0(request) + CompletableFuture.completedFuture[Unit](()) Review Comment: It does not matter where it is. We just need it because this is what the method returns. -- 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