From c41d6438736b5727dc688e03859da2c75c56e318 Mon Sep 17 00:00:00 2001 From: Bharath Vissapragada Date: Fri, 17 Jan 2025 09:55:30 -0800 Subject: [PATCH 1/2] ducktape: rename basic_kafka_compat_tests.py Ducktape expects modules to have either "test_" or "_test.py" prefix to make it an eligible test candidate. This particular test exists in the tree but is not being run. --- .../{basic_kafka_compat_tests.py => basic_kafka_compat_test.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/rptest/tests/{basic_kafka_compat_tests.py => basic_kafka_compat_test.py} (100%) diff --git a/tests/rptest/tests/basic_kafka_compat_tests.py b/tests/rptest/tests/basic_kafka_compat_test.py similarity index 100% rename from tests/rptest/tests/basic_kafka_compat_tests.py rename to tests/rptest/tests/basic_kafka_compat_test.py From c0b4e9bf7a50f8bf7fabe5b38e6e55c519226953 Mon Sep 17 00:00:00 2001 From: Bharath Vissapragada Date: Sun, 19 Jan 2025 18:33:56 -0800 Subject: [PATCH 2/2] tests/kafka_compat_test: fix metadata_quorum config The config names changed at somepoint in Apache Kafka. --- tests/rptest/tests/basic_kafka_compat_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rptest/tests/basic_kafka_compat_test.py b/tests/rptest/tests/basic_kafka_compat_test.py index c62c97d13716..1e7ba725efc9 100644 --- a/tests/rptest/tests/basic_kafka_compat_test.py +++ b/tests/rptest/tests/basic_kafka_compat_test.py @@ -78,7 +78,7 @@ def _compat_test_case(self, test_callable: CompatTestCaseCallable[T]): class TxKafkaCompatTest(KafkaCompatTest): @cluster(num_nodes=6) - @parametrize(metadata_quorum='COLOCATED_KRAFT') + @parametrize(metadata_quorum='COMBINED_KRAFT') def test_concurrent_producer_ids(self, metadata_quorum): def test_case(broker_service: RedpandaServiceForClients) -> list[str]: