diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt b/theodolite-quarkus/src/main/kotlin/theodolite/execution/Shutdown.kt
index 7adeae679750d7cc53c749ca41300a415c6b75f8..9ca7e70f6ecd5ed30120940be8de965c73f79a6a 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 ?
     }
 }