TaiJuWu commented on code in PR #19064: URL: https://github.com/apache/kafka/pull/19064#discussion_r2004221275
########## core/src/main/scala/kafka/server/ReplicaManager.scala: ########## @@ -1723,7 +1723,7 @@ class ReplicaManager(val config: KafkaConfig, metadata => findPreferredReadReplica(partition, metadata, params.replicaId, fetchInfo.fetchOffset, fetchTimeMs)) if (preferredReadReplica.isDefined) { - replicaSelectorOpt.foreach { selector => + replicaSelectorPlugin.foreach { selector => debug(s"Replica selector ${selector.getClass.getSimpleName} returned preferred replica " + Review Comment: Not sure I understand is correct or not. I changed the debug message to `debug(s"Replica selector plugin ${selector.getClass.getSimpleName} returned preferred replica " + s"${preferredReadReplica.get} for ${params.clientMetadata}")` If I am misunderstanding , please correct me. -- 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