tripleo-common/tripleo_common/actions/__init__.py
Thomas Herve e22f143cec Set heatclient exceptions to verbose
By setting the verbose flag on the heatclient exception module, we allow
the traceback to be included in the error message, which in turns is
returned to tripleoclient for the user.

Change-Id: I45c54e6591690625c5160517bbbdfec2eb5e5e26
Closes-Bug: #1804268
2018-11-30 10:43:12 +01:00

5 lines
107 B
Python

from heatclient import exc as heat_exc
# Setup Heat to give us tracebacks on errors.
heat_exc.verbose = 1