From cda9fcb00f6c9a63b606c50d4cf1648ec71ddfa2 Mon Sep 17 00:00:00 2001 From: Martin Magr Date: Mon, 2 Jun 2014 11:46:26 +0200 Subject: [PATCH] Fixed Heat plugin Global controller is not supported in refactored plugins. Those residual have been probably missed by rebasing. Change-Id: Id68119da79e648cc50d33dc9453b9e83fd80a64d Fixes: rhbz#1103382 --- packstack/plugins/heat_750.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packstack/plugins/heat_750.py b/packstack/plugins/heat_750.py index 318b462bc..2f02eb77d 100644 --- a/packstack/plugins/heat_750.py +++ b/packstack/plugins/heat_750.py @@ -143,14 +143,14 @@ def create_keystone_manifest(config, messages): def create_cloudwatch_manifest(config, messages): - manifestfile = "%s_heatcw.pp" % controller.CONF['CONFIG_CONTROLLER_HOST'] + manifestfile = "%s_heatcw.pp" % config['CONFIG_CONTROLLER_HOST'] manifestdata = getManifestTemplate(get_mq(config, "heat")) manifestdata += getManifestTemplate("heat_cloudwatch.pp") appendManifestFile(manifestfile, manifestdata, marker='heat') def create_cfn_manifest(config, messages): - manifestfile = "%s_heatcnf.pp" % controller.CONF['CONFIG_CONTROLLER_HOST'] + manifestfile = "%s_heatcnf.pp" % config['CONFIG_CONTROLLER_HOST'] manifestdata = getManifestTemplate(get_mq(config, "heat")) manifestdata += getManifestTemplate("heat_cfn.pp") appendManifestFile(manifestfile, manifestdata, marker='heat')