cmccabe commented on code in PR #12961: URL: https://github.com/apache/kafka/pull/12961#discussion_r1046449684
########## core/src/main/scala/kafka/server/KafkaConfig.scala: ########## @@ -1665,6 +1665,7 @@ class KafkaConfig private(doLog: Boolean, val props: java.util.Map[_, _], dynami def usesSelfManagedQuorum: Boolean = processRoles.nonEmpty val migrationEnabled: Boolean = getBoolean(KafkaConfig.MigrationEnabledProp) + def enableZkApiForwarding: Boolean = migrationEnabled && interBrokerProtocolVersion.isApiForwardingEnabled Review Comment: please don't add a reference to `KafkaConfig.interBrokerProtocolVersion` here. That is going away since we are moving away from statically configuring IBP (or indeed calling it IBP) -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
