mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
Merge pull request #1331 from AlanCoding/show_me_your_exceptions
Always log uncaught task exceptions
This commit is contained in:
commit
7ad42161fc
@ -1000,10 +1000,10 @@ class BaseTask(Task):
|
||||
)
|
||||
|
||||
except Exception:
|
||||
if status != 'canceled':
|
||||
tb = traceback.format_exc()
|
||||
if settings.DEBUG:
|
||||
logger.exception('%s Exception occurred while running task', instance.log_format)
|
||||
# run_pexpect does not throw exceptions for cancel or timeout
|
||||
# this could catch programming or file system errors
|
||||
tb = traceback.format_exc()
|
||||
logger.exception('%s Exception occurred while running task', instance.log_format)
|
||||
finally:
|
||||
try:
|
||||
if stdout_handle:
|
||||
|
Loading…
Reference in New Issue
Block a user