diff options
| author | Dante Niewenhuis <d.niewenhuis@hotmail.com> | 2023-11-15 15:56:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-15 15:56:03 +0100 |
| commit | 05141e92582372c816648b94ef3de5e16d1fe5b9 (patch) | |
| tree | 41e703d5a129948d445d9957392c632ab3f74872 /opendc-workflow/opendc-workflow-service | |
| parent | 2fc71b81ea01072c37ce140d4a47e33a25d65f72 (diff) | |
| parent | 1513efe07605975cd2f86f0b739bd490e4fc9970 (diff) | |
Merge pull request #168 from DanteNiewenhuis/greenifier-demo
Updated the simulation to let servers run until they are finished.
Diffstat (limited to 'opendc-workflow/opendc-workflow-service')
| -rw-r--r-- | opendc-workflow/opendc-workflow-service/src/main/kotlin/org/opendc/workflow/service/internal/WorkflowServiceImpl.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-workflow/opendc-workflow-service/src/main/kotlin/org/opendc/workflow/service/internal/WorkflowServiceImpl.kt b/opendc-workflow/opendc-workflow-service/src/main/kotlin/org/opendc/workflow/service/internal/WorkflowServiceImpl.kt index 01c1f565..e2655537 100644 --- a/opendc-workflow/opendc-workflow-service/src/main/kotlin/org/opendc/workflow/service/internal/WorkflowServiceImpl.kt +++ b/opendc-workflow/opendc-workflow-service/src/main/kotlin/org/opendc/workflow/service/internal/WorkflowServiceImpl.kt @@ -223,7 +223,7 @@ public class WorkflowServiceImpl( /** * Perform a scheduling cycle immediately. */ - private fun doSchedule() { + private fun () { // J2 Create list of eligible jobs val iterator = incomingJobs.iterator() while (iterator.hasNext()) { |
