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 7acb9b1b7bba3616f108b22e3fd3d03623ca106c Author: James Netherton <[email protected]> AuthorDate: Fri Jul 3 14:44:38 2026 +0100 Increase Splunk container timeout for slower linux/amd64 emulation on macOS & PodMan --- .../apache/camel/quarkus/test/support/splunk/SplunkTestResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests-support/splunk/src/test/java/org/apache/camel/quarkus/test/support/splunk/SplunkTestResource.java b/integration-tests-support/splunk/src/test/java/org/apache/camel/quarkus/test/support/splunk/SplunkTestResource.java index 1c5f501470..a6a6a355e5 100644 --- a/integration-tests-support/splunk/src/test/java/org/apache/camel/quarkus/test/support/splunk/SplunkTestResource.java +++ b/integration-tests-support/splunk/src/test/java/org/apache/camel/quarkus/test/support/splunk/SplunkTestResource.java @@ -83,7 +83,7 @@ public class SplunkTestResource implements QuarkusTestResourceLifecycleManager { .withEnv("TZ", TimeZone.getDefault().getID()) .waitingFor( Wait.forLogMessage(".*Ansible playbook complete.*\\n", 1) - .withStartupTimeout(Duration.ofMinutes(5))); + .withStartupTimeout(Duration.ofMinutes(10))); if (certPath != null && caCertPath != null && keystorePassword != null) { //combine key + certificates into 1 pem - required for splunk
