]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Use heat-engine.conf for heat-manage config
authorDerek Higgins <derekh@redhat.com>
Tue, 28 May 2013 09:47:43 +0000 (10:47 +0100)
committerDerek Higgins <derekh@redhat.com>
Tue, 28 May 2013 09:57:54 +0000 (10:57 +0100)
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

index 2e0a48d02a4a03002a9c63c6308d7f1c35a952b0..97262d81e2f438ed23f6701e39cb3ad89a20e910 100644 (file)
@@ -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()