mirror of https://github.com/apache/kafka.git
KAFKA-15404: Disable the flaky integration tests. (#14296)
Disabled the below tests to fix the thread leak: 1. kafka.server.DynamicBrokerReconfigurationTest.testThreadPoolResize() and 2. org.apache.kafka.tiered.storage.integration.OffloadAndConsumeFromLeaderTest Reviewers: Luke Chen <showuon@gmail.com>, Divij Vaidya <diviv@amazon.com>, Justine Olshan <jolshan@confluent.io>
This commit is contained in:
parent
c2bb8eb875
commit
43fe13350f
|
@ -798,6 +798,7 @@ class DynamicBrokerReconfigurationTest extends QuorumTestHarness with SaslSetup
|
|||
consumer.commitSync()
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
def testThreadPoolResize(): Unit = {
|
||||
val requestHandlerPrefix = "data-plane-kafka-request-handler-"
|
||||
|
|
|
@ -32,6 +32,7 @@ import org.apache.kafka.server.log.remote.storage.RemoteStorageManager;
|
|||
import org.junit.jupiter.api.AfterEach;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Tag;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.TestInfo;
|
||||
|
@ -154,6 +155,7 @@ public abstract class TieredStorageTestHarness extends IntegrationTestHarness {
|
|||
context = new TieredStorageTestContext(this);
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
public void executeTieredStorageTest() {
|
||||
TieredStorageTestBuilder builder = new TieredStorageTestBuilder();
|
||||
|
|
Loading…
Reference in New Issue