This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d69c7acad6d92674f794c9f57c11bc8c131c05da Author: Lukas Lowinger <[email protected]> AuthorDate: Mon Jul 6 10:37:57 2026 +0200 Increase timeout for QuartzClusteredTest --- .../apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java b/integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java index 5deb29eee8..edb7314eb4 100644 --- a/integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java +++ b/integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java @@ -101,7 +101,7 @@ class QuartzClusteredTest { } private void awaitStartup(QuarkusProcessExecutor quarkusProcessExecutor) { - Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(1, TimeUnit.SECONDS).until(() -> { + Awaitility.await().atMost(1, TimeUnit.MINUTES).pollDelay(1, TimeUnit.SECONDS).until(() -> { return isApplicationHealthy(quarkusProcessExecutor.getHttpPort()); }); }
