From 02c8e0ade279f80c6c49c2b8e9a8f8efe62f77bc Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 13 Sep 2018 14:40:47 -0400 Subject: [PATCH] Ignore sporadic test failure: time-sensitive https://build.spring.io/browse/INT-MASTER-1182/ --- .../springframework/integration/handler/DelayHandlerTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-integration-core/src/test/java/org/springframework/integration/handler/DelayHandlerTests.java b/spring-integration-core/src/test/java/org/springframework/integration/handler/DelayHandlerTests.java index 1ae8d63cb2..f213e1ef2d 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/handler/DelayHandlerTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/handler/DelayHandlerTests.java @@ -36,6 +36,7 @@ import java.util.concurrent.atomic.AtomicInteger; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.mockito.Mockito; @@ -413,6 +414,7 @@ public class DelayHandlerTests { } @Test //INT-1132 + @Ignore("Time-sensitive: no guarantee that message won't be released in between 'sleep' and 'destroy'") public void testReschedulePersistedMessagesOnStartup() throws Exception { MessageGroupStore messageGroupStore = new SimpleMessageStore(); this.delayHandler.setDefaultDelay(2000);