From 83b1689699a0edaabe7a8e850a472d6501c8316b Mon Sep 17 00:00:00 2001 From: David Arthur Date: Fri, 14 Apr 2023 10:02:46 -0400 Subject: [PATCH] MINOR: Disable the dual write integration test until KAFKA-14840 (#13573) Reviewers: Ismael Juma --- .../integration/kafka/zk/ZkMigrationIntegrationTest.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/test/scala/integration/kafka/zk/ZkMigrationIntegrationTest.scala b/core/src/test/scala/integration/kafka/zk/ZkMigrationIntegrationTest.scala index 03dbd2615d9a..56ae854eeb01 100644 --- a/core/src/test/scala/integration/kafka/zk/ZkMigrationIntegrationTest.scala +++ b/core/src/test/scala/integration/kafka/zk/ZkMigrationIntegrationTest.scala @@ -44,7 +44,7 @@ import org.apache.kafka.metadata.migration.ZkMigrationLeadershipState import org.apache.kafka.raft.RaftConfig import org.apache.kafka.server.common.{ApiMessageAndVersion, MetadataVersion, ProducerIdsBlock} import org.junit.jupiter.api.Assertions.{assertEquals, assertFalse, assertNotNull, assertTrue} -import org.junit.jupiter.api.Timeout +import org.junit.jupiter.api.{Disabled, Timeout} import org.junit.jupiter.api.extension.ExtendWith import org.slf4j.LoggerFactory @@ -182,6 +182,7 @@ class ZkMigrationIntegrationTest { migrationState = migrationClient.releaseControllerLeadership(migrationState) } + @Disabled("Will be fixed by KAFKA-14840") @ClusterTest(clusterType = Type.ZK, brokers = 3, metadataVersion = MetadataVersion.IBP_3_4_IV0, serverProperties = Array( new ClusterConfigProperty(key = "inter.broker.listener.name", value = "EXTERNAL"), new ClusterConfigProperty(key = "listeners", value = "PLAINTEXT://localhost:0,EXTERNAL://localhost:0"),