From c290e0ca521ab96ef4c015c3763f2207a3c1c949 Mon Sep 17 00:00:00 2001 From: Okada Haruki Date: Sat, 8 Jun 2024 10:09:00 +0900 Subject: [PATCH] KAFKA-16916: Disable blocking test temporarily (#16248) The test runs forever. We disable the test temporarily to unblock CI Reviewers: Luke Chen --- .../authenticator/ClientAuthenticationFailureTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/src/test/java/org/apache/kafka/common/security/authenticator/ClientAuthenticationFailureTest.java b/clients/src/test/java/org/apache/kafka/common/security/authenticator/ClientAuthenticationFailureTest.java index a0e22ee15055..d9261f82bc6e 100644 --- a/clients/src/test/java/org/apache/kafka/common/security/authenticator/ClientAuthenticationFailureTest.java +++ b/clients/src/test/java/org/apache/kafka/common/security/authenticator/ClientAuthenticationFailureTest.java @@ -40,6 +40,7 @@ import org.apache.kafka.test.TestUtils; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import java.time.Duration; @@ -110,6 +111,9 @@ public void testProducerWithInvalidCredentials() { } @Test + // The test runs forever on trunk after c01279b9. (KAFKA-16916) + // We disable the test temporarily until we fix it to unblock the CI. + @Disabled public void testAdminClientWithInvalidCredentials() { Map props = new HashMap<>(saslClientConfigs); props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:" + server.port());