From 3f72ad87f48fe19c7903ef9f685d2000171abd9d Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Tue, 28 May 2013 10:47:43 +0100 Subject: [PATCH] Use heat-engine.conf for heat-manage config Fixes bug 1184923 because prog was missing the CONF object was looking for the config file in /etc/heat/heat.conf this should have been /etc/heat/heat-engine.conf Change-Id: Ie23b9998df368274d69180e0d619b042dd9dc053 --- heat/cmd/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/cmd/manage.py b/heat/cmd/manage.py index 2e0a48d0..97262d81 100644 --- a/heat/cmd/manage.py +++ b/heat/cmd/manage.py @@ -63,7 +63,7 @@ command_opt = cfg.SubCommandOpt('command', def main(): CONF.register_cli_opt(command_opt) try: - CONF(sys.argv[1:], project='heat', + CONF(sys.argv[1:], project='heat', prog='heat-engine', version=version.version_info.version_string()) log.setup("heat") db_api.configure() -- 2.45.2