From 75d4140445f9fb275ac8684065daa7359c6d9dca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Thu, 22 Jul 2021 13:51:06 +0000 Subject: [PATCH] Apply 4 suggestion(s) to 4 file(s) --- theodolite/.dockerignore | 1 - .../main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt | 2 +- theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt | 3 +-- .../main/kotlin/theodolite/patcher/ConfigOverrideModifier.kt | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/theodolite/.dockerignore b/theodolite/.dockerignore index 79aa51a50..509eac55f 100644 --- a/theodolite/.dockerignore +++ b/theodolite/.dockerignore @@ -4,4 +4,3 @@ !build/lib/* !build/quarkus-app/* !config/* -!examples/* \ No newline at end of file diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt index 16d3b3712..b9a2fc7f1 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/KubernetesBenchmark.kt @@ -12,7 +12,7 @@ import theodolite.util.* private val logger = KotlinLogging.logger {} private var DEFAULT_NAMESPACE = "default" -private var DEFAULT_THEODOLITE_APP_RESOURCES = "./config" +private var DEFAULT_THEODOLITE_APP_RESOURCES = "./benchmark-resources" /** * Represents a benchmark in Kubernetes. An example for this is the BenchmarkType.yaml diff --git a/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt b/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt index dfef29f65..e795ada3e 100644 --- a/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt +++ b/theodolite/src/main/kotlin/theodolite/execution/Shutdown.kt @@ -43,8 +43,7 @@ class Shutdown(private val benchmarkExecution: BenchmarkExecution, private val b } logger.info { - "Teardown everything deployed. " + - "\n Teardown completed" + "Finished teardown of all benchmark resources." } } } diff --git a/theodolite/src/main/kotlin/theodolite/patcher/ConfigOverrideModifier.kt b/theodolite/src/main/kotlin/theodolite/patcher/ConfigOverrideModifier.kt index 447194d9a..8f77b1b95 100644 --- a/theodolite/src/main/kotlin/theodolite/patcher/ConfigOverrideModifier.kt +++ b/theodolite/src/main/kotlin/theodolite/patcher/ConfigOverrideModifier.kt @@ -5,7 +5,7 @@ import theodolite.util.ConfigurationOverride import theodolite.util.PatcherDefinition /** - * The ConfigOverrideModifier makes it possible to update the configuration overrides of a execution. + * The ConfigOverrideModifier makes it possible to update the configuration overrides of an execution. * * @property execution execution for which the config overrides should be updated * @property resources list of all resources that should be updated. -- GitLab