mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 02:01:01 -03:30
Dont overwrite result_traceback if it was already set.
This commit is contained in:
@@ -3006,7 +3006,8 @@ class AWXReceptorJob:
|
|||||||
if state_name == 'Succeeded':
|
if state_name == 'Succeeded':
|
||||||
return res
|
return res
|
||||||
|
|
||||||
raise RuntimeError(detail)
|
if self.task.instance.result_traceback is None:
|
||||||
|
raise RuntimeError(detail)
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user