jolshan commented on code in PR #13391: URL: https://github.com/apache/kafka/pull/13391#discussion_r1148082243
########## core/src/main/scala/kafka/network/RequestChannel.scala: ########## @@ -481,6 +493,11 @@ class RequestChannel(val queueSize: Int, def sendShutdownRequest(): Unit = requestQueue.put(ShutdownRequest) + def sendCallbackRequest(request: CallbackRequest): Unit = { + callbackQueue.put(request) + requestQueue.put(RequestChannel.WakeupRequest) Review Comment: The build will fail with the warnings. But I can add the extra code so the build passes. -- 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