mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-20 20:09:11 +00:00
framework/execution: Fix message parameter order
This commit is contained in:
parent
0047ce31d7
commit
4fc39dedbc
@ -488,7 +488,7 @@ class Runner(object):
|
||||
if job.status in rc.retry_on_status:
|
||||
if job.retries < rc.max_retries:
|
||||
msg = 'Job {} iteration {} completed with status {}. retrying...'
|
||||
self.logger.error(msg.format(job.id, job.status, job.iteration))
|
||||
self.logger.error(msg.format(job.id, job.iteration, job.status))
|
||||
self.retry_job(job)
|
||||
self.context.move_failed(job)
|
||||
self.context.write_state()
|
||||
|
Loading…
x
Reference in New Issue
Block a user