This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 335c3c9f96553114de957e727e6938fc107bbbd8 Author: Anton Goncharov <goncharov.a...@gmail.com> AuthorDate: Wed Nov 8 00:36:53 2023 +0100 Increasing timeouts in FileConsumerFailureHandledTest as the test seems flaky --- .../apache/camel/component/file/FileConsumerFailureHandledTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerFailureHandledTest.java b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerFailureHandledTest.java index d8d4cbd3778..70d79372256 100644 --- a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerFailureHandledTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerFailureHandledTest.java @@ -57,7 +57,7 @@ public class FileConsumerFailureHandledTest extends ContextTestSupport { mock.expectedBodiesReceived("London"); template.sendBodyAndHeader(fileUri(), "London", Exchange.FILE_NAME, "london.txt"); - mock.assertIsSatisfied(1000); + mock.assertIsSatisfied(3000); oneExchangeDone.matchesWaitTime(); @@ -72,7 +72,7 @@ public class FileConsumerFailureHandledTest extends ContextTestSupport { mock.expectedBodiesReceived("Dublin"); template.sendBodyAndHeader(fileUri(), "Dublin", Exchange.FILE_NAME, "dublin.txt"); - mock.assertIsSatisfied(1000); + mock.assertIsSatisfied(3000); oneExchangeDone.matchesWaitTime(); @@ -87,7 +87,7 @@ public class FileConsumerFailureHandledTest extends ContextTestSupport { mock.expectedBodiesReceived("Madrid"); template.sendBodyAndHeader(fileUri(), "Madrid", Exchange.FILE_NAME, "madrid.txt"); - mock.assertIsSatisfied(1000); + mock.assertIsSatisfied(3000); oneExchangeDone.matchesWaitTime();