Merge "Make deploy step failure logging indicate the error"
This commit is contained in:
commit
6798715eaf
@ -257,7 +257,10 @@ def do_next_deploy_step(task, step_index, conductor_id):
|
||||
{'node': node.uuid, 'step': node.deploy_step, 'err': e})
|
||||
utils.deploying_error_handler(
|
||||
task, log_msg,
|
||||
_("Failed to deploy: %s") % node.deploy_step)
|
||||
_("Failed to deploy: Deploy step %(step)s, "
|
||||
"error: %(err)s.") % {
|
||||
'step': node.deploy_step,
|
||||
'err': e})
|
||||
return
|
||||
except Exception as e:
|
||||
log_msg = ('Node %(node)s failed deploy step %(step)s with '
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixes vague node ``last_error`` field reporting upon deploy step
|
||||
failure by providing the exception error message in addition
|
||||
to the step that failed.
|
Loading…
x
Reference in New Issue
Block a user