Merge "Drop incorrect reference to heat_launch"

This commit is contained in:
Zuul 2018-08-03 02:44:42 +00:00 committed by Gerrit Code Review
commit 0879570c5d
1 changed files with 2 additions and 6 deletions

View File

@ -155,9 +155,7 @@ class InstallUndercloud(command.Command):
'~/stackrc'
))
except Exception as e:
self.log.error(UNDERCLOUD_FAILURE_MESSAGE.format(
self.heat_launch.install_tmp
))
self.log.error(UNDERCLOUD_FAILURE_MESSAGE)
self.log.error(e)
raise exceptions.DeploymentError(e)
@ -208,8 +206,6 @@ class UpgradeUndercloud(InstallUndercloud):
'~/stackrc'
))
except Exception as e:
self.log.error(UNDERCLOUD_FAILURE_MESSAGE.format(
self.heat_launch.install_tmp
))
self.log.error(UNDERCLOUD_FAILURE_MESSAGE)
self.log.error(e)
raise exceptions.DeploymentError(e)