Skip to content

Commit 7b45079

Browse files
committed
kolaTestIso: scope the testIsoRuns* vars
I'm seeing some concurrency issues when running the bump-lockfile job. It turns out when running kolaTestIso concurrently these variables are stepping on each other from the other runs. Let's scope them appropriately.
1 parent 38b1fde commit 7b45079

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vars/kolaTestIso.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def call(params = [:]) {
3939
// list of identifiers for each run for log collection
4040
def ids = []
4141

42-
testIsoRuns1 = [:]
43-
testIsoRuns2 = [:]
42+
def testIsoRuns1 = [:]
43+
def testIsoRuns2 = [:]
4444
testIsoRuns1["${arch}:kola:metal"] = {
4545
def id = marker == "" ? "kola-testiso-metal" : "kola-testiso-metal-${marker}"
4646
ids += id

0 commit comments

Comments
 (0)