This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch camel-4.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.22.x by this push:
new 0149e81120e6 Restore throttling of jobs per node on Jenkins
0149e81120e6 is described below
commit 0149e81120e674e9ea2fb803cca9bb2635754883
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 33ccd1fa2d53..6b23af6a9363 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