diff options
| author | Sacheendra Talluri <sacheendra.t@gmail.com> | 2025-03-27 16:14:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-27 16:14:39 +0100 |
| commit | b20dd5ebb48465470b9632dc92ecfb1794a8a4bf (patch) | |
| tree | 0aeab9ad4b366cfe9e8aa79f841563e7f91758ab /opendc-web/opendc-web-runner/src | |
| parent | ea45406229c8349e44c88f4112fe25435b59e4e9 (diff) | |
Support carbon forecasting in timeshift (#327)
* Remove task from scheduler bookkeeping after failure
* Support carbon forecasting in timeshift
* Register scheduler and carbonmodel in context
* Preliminary working task stopping; carbon intensity bug
* Working carbon based stop. Two timeshift thresholds
* Add a pause state task and guest
* Move task stopper to allocation spec
* Start tracking num pauses
Diffstat (limited to 'opendc-web/opendc-web-runner/src')
| -rw-r--r-- | opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/OpenDCRunner.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/OpenDCRunner.kt b/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/OpenDCRunner.kt index 09aaf9fa..406c9772 100644 --- a/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/OpenDCRunner.kt +++ b/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/OpenDCRunner.kt @@ -282,7 +282,7 @@ public class OpenDCRunner( { createPrefabComputeScheduler(scenario.schedulerName, Random(it.seeder.nextLong()), timeSource) }, ), registerComputeMonitor(serviceDomain, monitor), - setupHosts(serviceDomain, topology, listOf(), startTime), + setupHosts(serviceDomain, topology, startTime), ) val service = provisioner.registry.resolve(serviceDomain, ComputeService::class.java)!! |
