From 5a8aca020b11ce331ee7fb8b348aa1473ff3ff61 Mon Sep 17 00:00:00 2001 From: lorenz <stu203404@mail.uni-kiel.de> Date: Mon, 22 Mar 2021 15:00:05 +0100 Subject: [PATCH] Fix Shutdown.kt --- .../src/main/kotlin/theodolite/execution/Shutdown.kt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt index 7adeae679..9ca7e70f6 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt @@ -16,14 +16,12 @@ class Shutdown(private val benchmarkExecution: BenchmarkExecution, private val b logger.info { "Received shutdown signal -> Shutting down" } val deployment = benchmark.buildDeployment( - load = LoadDimension(0, "shutdown"), - res = Resource(0, "shutdown"), + load = LoadDimension(0, emptyList()), + res = Resource(0, emptyList()), configurationOverrides = benchmarkExecution.configOverrides ) logger.info { "Teardown the everything deployed" } deployment.teardown() logger.info { "Teardown completed" } - - // TODO Clear/Reset the kafka lag exporter ? } } -- GitLab