1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

output: fix JobOutput instantiation

iteration and label parameters were being passed in the wrong order when
instantiating JobOutput.
This commit is contained in:
Sergei Trofimov 2017-03-28 09:41:42 +01:00
parent 0032e347fe
commit 4006e998c2

View File

@ -465,7 +465,7 @@ def init_job_output(run_output, job):
path = os.path.join(run_output.basepath, output_name)
ensure_directory_exists(path)
write_pod(Result().to_pod(), os.path.join(path, 'result.json'))
job_output = JobOutput(path, job.id, job.iteration, job.label, job.retries)
job_output = JobOutput(path, job.id, job.label, job.iteration, job.retries)
job_output.status = job.status
run_output.jobs.append(job_output)
return job_output