Skip to content

Commit

Permalink
MINOR: Fix wrong config property in KafkaConfigTest (#18815)
Browse files Browse the repository at this point in the history
Reviewers: Ken Huang <[email protected]>, Chia-Ping Tsai <[email protected]>
  • Loading branch information
mingyen066 authored Feb 6, 2025
1 parent a565d8f commit 34e7136
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class KafkaConfigTest {
props.setProperty(KRaftConfigs.CONTROLLER_LISTENER_NAMES_CONFIG, "CONTROLLER")
props.setProperty(KRaftConfigs.NODE_ID_CONFIG, "1")
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
}
Expand Down

0 comments on commit 34e7136

Please sign in to comment.