This commit is contained in:
Brage 2023-07-30 23:12:34 +02:00
parent 9af35dbaa7
commit 58c394cea7

View File

@ -71,7 +71,7 @@ class RunnerCoordinator(private var maxConcurrentJobs: Int = 1) {
private suspend fun processWorkItem(workItem: ExecutionBlock): Job {
logger.info { "Processing work: ${workItem.type}" }
workItem.work()
return Job()
return Job().apply { complete() }
}