Skip to content

Commit

Permalink
KAFKA-16916: Disable blocking test temporarily (apache#16248)
Browse files Browse the repository at this point in the history
The test runs forever. We disable the test temporarily to unblock CI

Reviewers: Luke Chen <[email protected]>
  • Loading branch information
ocadaruma authored and TaiJuWu committed Jun 8, 2024
1 parent 90a5140 commit c290e0c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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<String, Object> props = new HashMap<>(saslClientConfigs);
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:" + server.port());
Expand Down

0 comments on commit c290e0c

Please sign in to comment.