This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7468856155521f3745b1e49cee8f05fcbfaa9a3d
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Aug 25 16:58:16 2022 +0200

    (chores) camel-jms: tries to adjust resource allocation
    
    The tests run flaky on systems with a very high core count. This tries to 
limit the concurrent tests to use at most 70% of the total core capacity
---
 components/camel-jms/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-jms/pom.xml b/components/camel-jms/pom.xml
index dc58b9f273e..0f082e16d2c 100644
--- a/components/camel-jms/pom.xml
+++ b/components/camel-jms/pom.xml
@@ -39,8 +39,9 @@
 
         <camel.surefire.reuseForks>true</camel.surefire.reuseForks>
         <camel.surefire.forkCount>1</camel.surefire.forkCount>
-        <camel.surefire.forkTimeout>120</camel.surefire.forkTimeout>
+        <camel.surefire.forkTimeout>240</camel.surefire.forkTimeout>
         <camel.surefire.parallel>true</camel.surefire.parallel>
+        <camel.surefire.parallel.factor>0.7</camel.surefire.parallel.factor>
     </properties>
 
     <dependencies>

Reply via email to