Skip to content
Snippets Groups Projects
Commit 0fc5b0dc authored by Lorenz Boguhn's avatar Lorenz Boguhn
Browse files

Fix TopicManager

remove unnecesarry \ in the deletion method
parent 1fc34921
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!126Fixes the topic manager,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
......@@ -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 = ",")
} "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment