From e6c74cbc184c18698afd1a8d6edf99b8f8556fca Mon Sep 17 00:00:00 2001 From: "stu126940@mail.uni-kiel.de" <stu126940@mail.uni-kiel.de> Date: Thu, 22 Apr 2021 17:06:23 +0200 Subject: [PATCH] enhance logging --- .../theodolite/benchmark/KubernetesBenchmarkDeployment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt index 6c1ec1762..b05dfd6f4 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt @@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment( .map{ NewTopic(it.name, it.numPartitions, it.replicationFactor) } kafkaController.createTopics(kafkaTopics) appResources.forEach { kubernetesManager.deploy(it) } - logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the workload generator." } + logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the load generator." } Thread.sleep(Duration.ofSeconds(this.loadGenerationDelay).toMillis()) loadGenResources.forEach { kubernetesManager.deploy(it) } } -- GitLab