From b43b67553ef5cf74e9397038255abf17834a6a62 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Thu, 11 Feb 2021 13:27:21 +0100 Subject: [PATCH] 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 --- .../java/io/netty/handler/traffic/FileRegionThrottleTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handler/src/test/java/io/netty/handler/traffic/FileRegionThrottleTest.java b/handler/src/test/java/io/netty/handler/traffic/FileRegionThrottleTest.java index 72d604c069..e4e4ebc9a5 100644 --- a/handler/src/test/java/io/netty/handler/traffic/FileRegionThrottleTest.java +++ b/handler/src/test/java/io/netty/handler/traffic/FileRegionThrottleTest.java @@ -37,6 +37,7 @@ import io.netty.util.internal.PlatformDependent; import org.junit.After; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import java.io.File; @@ -83,6 +84,7 @@ public class FileRegionThrottleTest { group.shutdownGracefully(); } + @Ignore("This test is flaky, need more investigation") @Test public void testGlobalWriteThrottle() throws Exception { final CountDownLatch latch = new CountDownLatch(1);