Skip to content

Commit 357f0c1

Browse files
committed
KAFKA-18677: Update ConsoleConsumerTest system test
JIRA: KAFKA-18677 The ConsoleConsumerTest system test still relied on ZK so it fails. We should convert it to kraft.
1 parent 281a3c6 commit 357f0c1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/kafkatest/sanity_checks/test_console_consumer.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ def setUp(self):
4444
@cluster(num_nodes=3)
4545
@matrix(security_protocol=['PLAINTEXT', 'SSL'], metadata_quorum=quorum.all_kraft)
4646
@cluster(num_nodes=4)
47-
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['PLAIN'], metadata_quorum=quorum.all_kraft)
48-
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['SCRAM-SHA-256', 'SCRAM-SHA-512']) # SCRAM not yet supported with KRaft
47+
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['PLAIN', 'SCRAM-SHA-256', 'SCRAM-SHA-512'], metadata_quorum=quorum.all_kraft)
4948
@matrix(security_protocol=['SASL_PLAINTEXT', 'SASL_SSL'], metadata_quorum=quorum.all_kraft)
5049
def test_lifecycle(self, security_protocol, sasl_mechanism='GSSAPI', metadata_quorum=quorum.zk):
5150
"""Check that console consumer starts/stops properly, and that we are capturing log output."""

0 commit comments

Comments
 (0)