mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 04:21:17 +00:00
cec3eaa375
ExecutionContext.end_run() does final updates to the run info in the run output (final status, run duration, etc). This was previously accessed via self.output in the context. Typically, this would correctly resolve to the run output, as there would be no current job. However, in the event of a crash, current_job would be set, and this would resolve to the job output itself, resulting in run info not being updated. Use run_output to avoid this.