KAFKA-16916: Disable blocking test temporarily (#16248)

The test runs forever. We disable the test temporarily to unblock CI

Reviewers: Luke Chen <showuon@gmail.com>
This commit is contained in:
Okada Haruki 2024-06-08 10:09:00 +09:00 committed by GitHub
parent eb352828ed
commit d13a693ea7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,7 @@ import org.apache.kafka.common.utils.MockTime;
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 class ClientAuthenticationFailureTest {
}
@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<String, Object> props = new HashMap<>(saslClientConfigs);
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:" + server.port());