diff options
| author | Dante Niewenhuis <d.niewenhuis@hotmail.com> | 2024-04-29 13:51:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-29 13:51:36 +0200 |
| commit | 1b8e81343f576b0a29cf94e02e0429f5011b1f52 (patch) | |
| tree | 3abefbc3fabe6d51dd34df0ffb2dd3a4daf2d5b0 /opendc-web/opendc-web-runner/src | |
| parent | 2dc44c7283200f4689cc1be15115a8b1cd37d456 (diff) | |
Reworked Scenario.kt to consist of only specifications. The Specs are turned into objects when the scenario is being executed by ScenarioRunner.kt (#227)
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 0de3b7fc..d6913412 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 @@ -288,7 +288,7 @@ public class OpenDCRunner( } // Run workload trace - service.replay(timeSource, vms, seed, failureModel = failureModel) + service.replay(timeSource, vms, seed = seed) val serviceMetrics = service.getSchedulerStats() logger.debug { |
