lowercase

This commit is contained in:
Zoltan Kiss 2019-10-08 15:50:16 +01:00
parent 3857f092cd
commit 69560d2848

View File

@ -88,7 +88,7 @@ class KubesTest extends DefaultTask {
}
List<Future<KubePodResult>> futures = IntStream.range(0, numberOfPods).mapToObj({ i ->
String podName = "$taskToExecuteName-$stableRunId-$random-$i"
String podName = "${taskToExecuteName.toLowerCase()}-$stableRunId-$random-$i"
submitBuild(client, namespace, numberOfPods, i, podName, printOutput, 3)
}).collect(Collectors.toList())
this.testOutput = Collections.synchronizedList(futures.collect { it -> it.get().binaryResults }.flatten())