This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch automated/upgrade-ibm-mq-container-10.0.0.0-r4
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to
refs/heads/automated/upgrade-ibm-mq-container-10.0.0.0-r4 by this push:
new 8e5581815ce4 chore(camel-test-infra-ibmmq): increase JMS connection
wait timeout to 60s
8e5581815ce4 is described below
commit 8e5581815ce440f591fc4c8485c456ae07d3fc8c
Author: Guillaume Nodet <[email protected]>
AuthorDate: Thu Sep 3 23:18:55 2026 +0200
chore(camel-test-infra-ibmmq): increase JMS connection wait timeout to 60s
The 30s Awaitility timeout in waitForJmsConnection() is too tight for
resource-constrained environments. Since Awaitility exits as soon as the
connection succeeds, a higher cap does not slow down passing tests.
---
.../test/infra/ibmmq/services/IbmMQLocalContainerInfraService.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test-infra/camel-test-infra-ibmmq/src/main/java/org/apache/camel/test/infra/ibmmq/services/IbmMQLocalContainerInfraService.java
b/test-infra/camel-test-infra-ibmmq/src/main/java/org/apache/camel/test/infra/ibmmq/services/IbmMQLocalContainerInfraService.java
index 41b577c539a1..25eb678e9ed5 100644
---
a/test-infra/camel-test-infra-ibmmq/src/main/java/org/apache/camel/test/infra/ibmmq/services/IbmMQLocalContainerInfraService.java
+++
b/test-infra/camel-test-infra-ibmmq/src/main/java/org/apache/camel/test/infra/ibmmq/services/IbmMQLocalContainerInfraService.java
@@ -108,7 +108,7 @@ public class IbmMQLocalContainerInfraService implements
IbmMQInfraService, Conta
private void waitForJmsConnection() {
Awaitility.await("IBM MQ accepting JMS connections")
- .atMost(30, TimeUnit.SECONDS)
+ .atMost(60, TimeUnit.SECONDS)
.pollInterval(1, TimeUnit.SECONDS)
.ignoreExceptionsInstanceOf(JMSException.class)
.until(() -> {