From c4f48069d9a85957e78f45a62b1d6d6fcf34c467 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Thu, 2 Nov 2017 16:06:09 -0700 Subject: [PATCH] Remove Concurrency From JJB Merge Job Currently multiple jjb merge jobs can run at once causing a race-condition which Jenkins exposes as a 401 Unauthorized. Throttling the number of jobs in total to 1 should prevent this from happening in the future. Change-Id: I4c99d9f49db0baf26b3d077354afd2fea93d1740 Signed-off-by: Trevor Bramwell --- jjb/releng/releng-ci-jobs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jjb/releng/releng-ci-jobs.yml b/jjb/releng/releng-ci-jobs.yml index c4b7c8db3..ef99f5abb 100644 --- a/jjb/releng/releng-ci-jobs.yml +++ b/jjb/releng/releng-ci-jobs.yml @@ -90,6 +90,12 @@ project: '{project}' branch: 'master' + properties: + - throttle: + max-per-node: 1 + max-total: 1 + option: 'project' + scm: - git-scm -- 2.16.6