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

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


The following commit(s) were added to refs/heads/main by this push:
     new 85365d3f7ab7 Restore throttling of jobs per node on Jenkins
85365d3f7ab7 is described below

commit 85365d3f7ab70232c211e7a95bde1576f443661c
Author: AurĂ©lien Pupier <[email protected]>
AuthorDate: Thu Sep 3 16:55:31 2026 +0200

    Restore throttling of jobs per node on Jenkins
    
    seems that an upgrade of the jenkins plugin used changed the default
    value for maxConcurrentPerNode
    
https://github.com/jenkinsci/throttle-concurrent-builds-plugin/commit/e761815c7399ae710cf9a4023b8005fd6879d47a
    , so with this relase
    
https://github.com/jenkinsci/throttle-concurrent-builds-plugin/releases/tag/624.vc427fa_e0e503
    
    When no value set previously, it was considering a value of one.
    
    we are still not ready for playing the tests in //, there are still port
    conflicts and artifacts could overwrite them in the local repository
    causing wrong testing.
    
    Signed-off-by: AurĂ©lien Pupier <[email protected]>
---
 Jenkinsfile       | 3 ++-
 Jenkinsfile.jdk26 | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index fe93376d42ea..8367ae844760 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -41,7 +41,8 @@ pipeline {
         throttleJobProperty(
           categories: ['camel'],
           throttleEnabled: true,
-          throttleOption: 'category'
+          throttleOption: 'category',
+          maxConcurrentPerNode: 1
       )
 
         // This is required if you want to clean before build
diff --git a/Jenkinsfile.jdk26 b/Jenkinsfile.jdk26
index 201e157efca9..26bdeb1ea85e 100644
--- a/Jenkinsfile.jdk26
+++ b/Jenkinsfile.jdk26
@@ -46,7 +46,8 @@ pipeline {
         throttleJobProperty(
           categories: ['camel'],
           throttleEnabled: true,
-          throttleOption: 'category'
+          throttleOption: 'category',
+          maxConcurrentPerNode: 1
       )
 
         // This is required if you want to clean before build

Reply via email to