This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new abe7dcb Fix flaky CI test on slower CI servers abe7dcb is described below commit abe7dcb4545c21c4a8d2fa01737e37f5f815a031 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun Jan 30 21:44:32 2022 +0100 Fix flaky CI test on slower CI servers --- .../java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java index 2192e8e..6836456 100644 --- a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaBlockWhenFullTest.java @@ -35,9 +35,9 @@ public class SedaBlockWhenFullTest extends ContextTestSupport { 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"; + = "seda:blockingFoo" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&offerTimeout=200"; private static final String BLOCK_WHEN_FULL_URI - = "seda:blockingBar" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&timeout=0&offerTimeout=200"; + = "seda:blockingBar" + String.format(SIZE_PARAM, QUEUE_SIZE) + "&blockWhenFull=true&timeout=0&offerTimeout=300"; private static final String DEFAULT_URI = "seda:foo" + String.format(SIZE_PARAM, QUEUE_SIZE); @Override