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
The following commit(s) were added to refs/heads/main by this push:
new 6885cd3d8a [Tests] Increase file limits for ActiveMQ container
6885cd3d8a is described below
commit 6885cd3d8a4b3dc8e129551bae2ef5834c696f4d
Author: Andrej Vaňo <[email protected]>
AuthorDate: Wed Sep 23 22:54:44 2026 +0200
[Tests] Increase file limits for ActiveMQ container
---
.../camel/quarkus/test/support/activemq/ActiveMQTestResource.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/integration-tests-support/activemq/src/main/java/org/apache/camel/quarkus/test/support/activemq/ActiveMQTestResource.java
b/integration-tests-support/activemq/src/main/java/org/apache/camel/quarkus/test/support/activemq/ActiveMQTestResource.java
index aa03a25fd6..2dc122b049 100644
---
a/integration-tests-support/activemq/src/main/java/org/apache/camel/quarkus/test/support/activemq/ActiveMQTestResource.java
+++
b/integration-tests-support/activemq/src/main/java/org/apache/camel/quarkus/test/support/activemq/ActiveMQTestResource.java
@@ -67,7 +67,7 @@ public class ActiveMQTestResource implements
QuarkusTestResourceLifecycleManager
.withEnv("JAVA_ARGS_APPEND", "-Dbrokerconfig.maxDiskUsage=-1 "
+ String.join(" ", javaArgs))
.waitingFor(Wait.forLogMessage(".*AMQ241001.*", 1))
.withCreateContainerCmdModifier(
- cmd -> cmd.getHostConfig().withUlimits(new Ulimit[] {
new Ulimit("nofile", 2048L, 2048L) }));
+ cmd -> cmd.getHostConfig().withUlimits(new Ulimit[] {
new Ulimit("nofile", 8192L, 8192L) }));
container.start();