Fix exception logging
A call to log an exception was missing the argument. Change-Id: I0bc59a09aaa2638ded6c181125e5382c41615858
This commit is contained in:
parent
af03218a08
commit
a2b628911d
@ -69,8 +69,9 @@ class Workflow(DeploymentValidationMixin, horizon.workflows.Workflow):
|
||||
except Exception as e:
|
||||
# Showing error in both workflow tabs, because from the exception
|
||||
# type we can't recognize where it should show
|
||||
self.add_error_to_step(unicode(e), 'undeployed_overview')
|
||||
self.add_error_to_step(unicode(e), 'deployed_configuration')
|
||||
LOG.exception()
|
||||
raise django.forms.ValidationError(unicode(e))
|
||||
msg = unicode(e)
|
||||
self.add_error_to_step(msg, 'undeployed_overview')
|
||||
self.add_error_to_step(msg, 'deployed_configuration')
|
||||
LOG.exception('Error creating overcloud')
|
||||
raise django.forms.ValidationError(msg)
|
||||
return True
|
||||
|
Loading…
x
Reference in New Issue
Block a user