mirror of https://github.com/apache/kafka.git
MINOR: Fix wrong config property in KafkaConfigTest (#18815)
Reviewers: Ken Huang <s7133700@gmail.com>, Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
a565d8fdac
commit
34e7136b7a
|
@ -56,7 +56,7 @@ class KafkaConfigTest {
|
||||||
props.setProperty(KRaftConfigs.CONTROLLER_LISTENER_NAMES_CONFIG, "CONTROLLER")
|
props.setProperty(KRaftConfigs.CONTROLLER_LISTENER_NAMES_CONFIG, "CONTROLLER")
|
||||||
props.setProperty(KRaftConfigs.NODE_ID_CONFIG, "1")
|
props.setProperty(KRaftConfigs.NODE_ID_CONFIG, "1")
|
||||||
props.setProperty(SocketServerConfigs.LISTENERS_CONFIG, "PLAINTEXT://localhost:0,CONTROLLER://localhost:5000")
|
props.setProperty(SocketServerConfigs.LISTENERS_CONFIG, "PLAINTEXT://localhost:0,CONTROLLER://localhost:5000")
|
||||||
props.setProperty(QuorumConfig.QUORUM_VOTERS_CONFIG, "2@localhost:5000")
|
props.setProperty(QuorumConfig.QUORUM_VOTERS_CONFIG, "1@localhost:5000")
|
||||||
props.setProperty(SocketServerConfigs.LISTENER_SECURITY_PROTOCOL_MAP_CONFIG, "PLAINTEXT:PLAINTEXT,CONTROLLER:SASL_SSL")
|
props.setProperty(SocketServerConfigs.LISTENER_SECURITY_PROTOCOL_MAP_CONFIG, "PLAINTEXT:PLAINTEXT,CONTROLLER:SASL_SSL")
|
||||||
props
|
props
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue