diff options
author | Mark McLoughlin <markmc@redhat.com> | 2013-04-27 13:20:04 +0100 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2013-04-27 13:27:26 +0100 |
commit | 117e73ba572ea421deabb7bd05318388439e2056 (patch) | |
tree | 314ff7ab486b7d4783b83d48e55b89de0d556a84 /bin/heat-engine | |
parent | e28a34f560b83527f2f7022ded4bc91efa2059f8 (diff) | |
download | heat-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-x | bin/heat-engine | 3 |
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() |