Fix exception logging

A call to log an exception was missing the argument.

Change-Id: I0bc59a09aaa2638ded6c181125e5382c41615858
This commit is contained in:
Ana Krivokapic 2014-03-27 17:13:10 +01:00
parent af03218a08
commit a2b628911d

View File

@ -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