From 66f64e9472457b9a827996bf1eb031b79578884e Mon Sep 17 00:00:00 2001 From: Haruki Okada Date: Sat, 8 Jun 2024 10:00:20 +0900 Subject: [PATCH] KAFKA-16916: Disable blocking test temporarily --- .../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 a0e22ee150552..d9261f82bc6ee 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());