This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 1b81b6f Attempt to fix flaky test on CI 1b81b6f is described below commit 1b81b6fa42ddeeae659167a81e5e6c1dabfee86a Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Aug 24 09:22:30 2018 +0200 Attempt to fix flaky test on CI --- .../java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java b/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java index b64fe87..9290a07 100644 --- a/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java +++ b/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java @@ -16,7 +16,6 @@ */ package org.apache.camel.component.seda; - import org.apache.camel.ContextTestSupport; import org.apache.camel.builder.RouteBuilder; @@ -27,11 +26,11 @@ import org.apache.camel.builder.RouteBuilder; public class SedaBlockWhenFullTest extends ContextTestSupport { private static final int QUEUE_SIZE = 1; private static final int DELAY = 10; - private static final int DELAY_LONG = 100; + private static final int DELAY_LONG = 130; private static final String MOCK_URI = "mock:blockWhenFullOutput"; private static final String SIZE_PARAM = "?size=%d"; private static final String SEDA_WITH_OFFER_TIMEOUT_URI = "seda:blockingFoo" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&offerTimeout=100"; - private static final String BLOCK_WHEN_FULL_URI = "seda:blockingFoo" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&timeout=0&offerTimeout=200"; + private static final String BLOCK_WHEN_FULL_URI = "seda:blockingBar" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&timeout=0&offerTimeout=200"; private static final String DEFAULT_URI = "seda:foo" + String.format(SIZE_PARAM, QUEUE_SIZE); @Override