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