Skip to content

Commit 5507c22

Browse files
authored
KAFKA-12456 Log 'Listeners are not identical across brokers' message at INFO instead of ERROR (apache#20404)
Lower the log level to INFO instead of ERROR. Reviewers: Chia-Ping Tsai <[email protected]>
1 parent f670e9b commit 5507c22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/kafka/server/metadata/ZkMetadataCache.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ class ZkMetadataCache(
542542
aliveNodes.get(brokerId).foreach { listenerMap =>
543543
val listeners = listenerMap.keySet
544544
if (!aliveNodes.values.forall(_.keySet == listeners))
545-
error(s"Listeners are not identical across brokers: $aliveNodes")
545+
info(s"Listeners are not identical across brokers: $aliveNodes")
546546
}
547547

548548
val topicIds = mutable.Map.empty[String, Uuid]

0 commit comments

Comments
 (0)