Skip to content
Snippets Groups Projects

Fix: check if executor is initialized

1 file
+ 1
0
Compare changes
  • Side-by-side
  • Inline
@@ -168,6 +168,7 @@ class TheodoliteController(
}
fun isExecutionRunning(executionName: String): Boolean {
if (!::executor.isInitialized) return false
return this.executor.getExecution().name == executionName
}
Loading