From 0fc5b0dc18e96cfa0e39eab13a3f4cc54b89a951 Mon Sep 17 00:00:00 2001
From: lorenz <stu203404@mail.uni-kiel.de>
Date: Thu, 15 Apr 2021 15:59:40 +0200
Subject: [PATCH] Fix TopicManager

remove unnecesarry \ in the deletion method
---
 .../src/main/kotlin/theodolite/k8s/TopicManager.kt              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt
index 2cbe16b5a..43dc69725 100644
--- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt
+++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/TopicManager.kt
@@ -40,7 +40,7 @@ class TopicManager(private val kafkaConfig: HashMap<String, Any>) {
             val result = kafkaAdmin.deleteTopics(topics)
             result.all().get() // wait for the future object
             logger.info {
-                "\"Topics deletion finished with result: ${
+                "Topics deletion finished with result: ${
                     result.values().map { it -> it.key + ": " + it.value.isDone }
                         .joinToString(separator = ",")
                 } "
-- 
GitLab