mirror of
https://github.com/ansible/awx.git
synced 2026-02-17 19:20:05 -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:
@@ -172,6 +172,7 @@ class IsolatedManager(object):
|
|||||||
if runner_obj.status == 'failed':
|
if runner_obj.status == 'failed':
|
||||||
self.instance.result_traceback = runner_obj.stdout.read()
|
self.instance.result_traceback = runner_obj.stdout.read()
|
||||||
self.instance.save(update_fields=['result_traceback'])
|
self.instance.save(update_fields=['result_traceback'])
|
||||||
|
return 'error', runner_obj.rc
|
||||||
|
|
||||||
return runner_obj.status, runner_obj.rc
|
return runner_obj.status, runner_obj.rc
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user