Skip to content
Snippets Groups Projects
Commit 59038cb4 authored by Sören Henning's avatar Sören Henning
Browse files

Merge branch 'fix-executorIsNotInitError' into 'theodolite-kotlin'

Fix: check if executor is initialized

See merge request !155
parents fbee7101 e5076cd8
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!155Fix: check if executor is initialized,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #3802 passed
......@@ -168,6 +168,7 @@ class TheodoliteController(
}
fun isExecutionRunning(executionName: String): Boolean {
if (!::executor.isInitialized) return false
return this.executor.getExecution().name == executionName
}
......
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