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

Fix path WorkloadgeneratorStateCleaner

parent 79ed456f
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!78Resolve "Implement Quarkus/Kotlin protype"
...@@ -44,7 +44,7 @@ class WorkloadGeneratorStateCleaner(ip: String, val path: String) { ...@@ -44,7 +44,7 @@ class WorkloadGeneratorStateCleaner(ip: String, val path: String) {
// delete all children nodes // delete all children nodes
for (s: String in children) { for (s: String in children) {
try { try {
zookeeperClient.delete(s, -1) zookeeperClient.delete("${this.path}/$s", -1)
} catch (ex: Exception) { } catch (ex: Exception) {
logger.info { "$ex" } logger.info { "$ex" }
} }
......
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