Disable flaky test (#11017)
Motivation: The testGlobalWriteThrottle is flaky and failed our build multiple times now. Lets disable it for now until we had time to investigate Modifications: Disable flaky test Result: Less failures during build
This commit is contained in:
parent
6808d7582a
commit
12b5ef545a
@ -36,6 +36,7 @@ import io.netty.util.internal.PlatformDependent;
|
|||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
@ -92,6 +93,7 @@ public class FileRegionThrottleTest {
|
|||||||
group.shutdownGracefully();
|
group.shutdownGracefully();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("This test is flaky, need more investigation")
|
||||||
@Test
|
@Test
|
||||||
public void testGlobalWriteThrottle() throws Exception {
|
public void testGlobalWriteThrottle() throws Exception {
|
||||||
final CountDownLatch latch = new CountDownLatch(1);
|
final CountDownLatch latch = new CountDownLatch(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user