From 4ee6a01a2801b9b70d69dbdd96950a6d227790fa Mon Sep 17 00:00:00 2001 From: "stu126940@mail.uni-kiel.de" <stu126940@mail.uni-kiel.de> Date: Tue, 17 Aug 2021 11:08:03 +0200 Subject: [PATCH] minor code changes --- .../theodolite/execution/operator/TheodoliteController.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt index d1c0df788..e7b5ed429 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/operator/TheodoliteController.kt @@ -67,8 +67,8 @@ class TheodoliteController( private fun runExecution(execution: BenchmarkExecution, benchmark: KubernetesBenchmark) { val modifier = ConfigOverrideModifier( execution = execution, - resources = benchmark.appResourceSets.flatMap { it -> it.loadResourceSet().map { it.first } } - + benchmark.loadGenResourceSets.flatMap { it -> it.loadResourceSet().map { it.first } } + resources = benchmark.loadKubernetesResources(benchmark.appResourceSets).map { it.first } + + benchmark.loadKubernetesResources(benchmark.loadGenResourceSets).map { it.first } ) modifier.setAdditionalLabels( labelValue = execution.name, -- GitLab