Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
onurkaraman caught a problem introduced in KAFKA-1809:
In testDuplicateListeners() from KafkaConfigTest, your property key has a typo(the comma should be a dot):
props.put("advertised,listeners", "PLAINTEXT://localhost:9091,TRACE://localhost:9091")
should be:
props.put("advertised.listeners", "PLAINTEXT://localhost:9091,TRACE://localhost:9091")