mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
when isolated or container jobs fail to launch, set job status to error
a status of error makes more sense, because failed generally points to an issue with the playbook itself, while error is more generally used for reporting issues internal to Tower see: https://github.com/ansible/awx/issues/4909
This commit is contained in:
parent
cf5d3d55f0
commit
6dfc714c75
@ -172,6 +172,7 @@ class IsolatedManager(object):
|
||||
if runner_obj.status == 'failed':
|
||||
self.instance.result_traceback = runner_obj.stdout.read()
|
||||
self.instance.save(update_fields=['result_traceback'])
|
||||
return 'error', runner_obj.rc
|
||||
|
||||
return runner_obj.status, runner_obj.rc
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user