This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git
The following commit(s) were added to refs/heads/main by this push:
new 9049b83b Increase timeout to reduce test flakiness
9049b83b is described below
commit 9049b83bb79f5addb6bceddba7d989183c162085
Author: Aurélien Pupier <[email protected]>
AuthorDate: Tue Apr 15 14:15:57 2025 +0200
Increase timeout to reduce test flakiness
Signed-off-by: Aurélien Pupier <[email protected]>
---
.../test/java/org/apache/camel/example/AggregateDistributedTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/aggregate-dist/src/test/java/org/apache/camel/example/AggregateDistributedTest.java
b/aggregate-dist/src/test/java/org/apache/camel/example/AggregateDistributedTest.java
index f2b17e48..55ba0f97 100644
---
a/aggregate-dist/src/test/java/org/apache/camel/example/AggregateDistributedTest.java
+++
b/aggregate-dist/src/test/java/org/apache/camel/example/AggregateDistributedTest.java
@@ -30,6 +30,6 @@ class AggregateDistributedTest {
@Test
void should_aggregate() throws Exception {
- assertTrue(new Application().asyncLaunch().get(30, TimeUnit.SECONDS));
+ assertTrue(new Application().asyncLaunch().get(60, TimeUnit.SECONDS));
}
}