This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.27.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 422c144b3d787dbb2ad9ef5b442e072260675b62 Author: Lukas Lowinger <[email protected]> AuthorDate: Tue Oct 14 13:51:44 2025 +0200 Enlarge timeout for Master Openshift IT --- .../apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java index 321d04c96b..e764ac4f52 100644 --- a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java +++ b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java @@ -106,7 +106,7 @@ class MasterOpenShiftTest { } private void awaitStartup(QuarkusProcessExecutor quarkusProcessExecutor) { - Awaitility.await().atMost(10, TimeUnit.SECONDS).pollDelay(1, TimeUnit.SECONDS).until(() -> { + Awaitility.await().atMost(40, TimeUnit.SECONDS).pollDelay(1, TimeUnit.SECONDS).until(() -> { return isApplicationHealthy(quarkusProcessExecutor.getHttpPort()); }); }
