summaryrefslogtreecommitdiff
path: root/bin/heat-engine
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2013-04-27 13:20:04 +0100
committerMark McLoughlin <markmc@redhat.com>2013-04-27 13:27:26 +0100
commit117e73ba572ea421deabb7bd05318388439e2056 (patch)
tree314ff7ab486b7d4783b83d48e55b89de0d556a84 /bin/heat-engine
parente28a34f560b83527f2f7022ded4bc91efa2059f8 (diff)
downloadheat-117e73ba572ea421deabb7bd05318388439e2056.tar.gz
Remove engine_topic configuration option
Fixes bug #1173575 This is currently broken since heat-engine always listens to the 'engine' topic and there isn't actually a good use case for this to be configurable, so let's kill it. Change-Id: I35c0292c921f81857f80a7f111df5ac330d54ecf
Diffstat (limited to 'bin/heat-engine')
-rwxr-xr-xbin/heat-engine3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/heat-engine b/bin/heat-engine
index 2eefea1d7..084938805 100755
--- a/bin/heat-engine
+++ b/bin/heat-engine
@@ -44,6 +44,7 @@ from heat.openstack.common import service
from heat.common import config
from heat.db import api as db_api
+from heat.rpc import api as rpc_api
LOG = logging.getLogger('heat.engine')
@@ -62,6 +63,6 @@ if __name__ == '__main__':
from heat.engine import service as engine
db_api.configure()
- srv = engine.EngineService(cfg.CONF.host, 'engine')
+ srv = engine.EngineService(cfg.CONF.host, rpc_api.ENGINE_TOPIC)
launcher = service.launch(srv)
launcher.wait()