I'd like to prevent a job with the same parameters to run concurrently. I'm trying to use "Prevent multiple jobs with identical parameters from running concurrently" by setting "List of parameters to check".
When adding multiple comma-separated parameters to "List of parameters to check" it doesn't work as expected:
my job has 3 params: A, B, C
List of parameters to check: "A,B"
started a job with params: A:1, B:2, C:3
and tried to start another job in parallel: A:2, B:2, C:3
According to my understanding because "A,B" needs to be unique, the 2nd job should've started in parallel, because the 1st job's "A,B" is "1,2" and the 2nd job's is "2,2".
However it didn't start.
On the other hand I don't want C to be taken into account (C is the BUILD_ID of the job that triggered this job, so it's always different) so I don't want to leave "List of parameters to check" empty