e22f143cec
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
5 lines
107 B
Python
5 lines
107 B
Python
from heatclient import exc as heat_exc
|
|
|
|
# Setup Heat to give us tracebacks on errors.
|
|
heat_exc.verbose = 1
|