summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-03-08 21:38:26 +0000
committerGerrit Code Review <review@openstack.org>2013-03-08 21:38:26 +0000
commit63cf1277666c25e4d1ce560c5800a5117d5a7b4d (patch)
tree8cb1ef843a234213587eaa0d42b9321167092cfd
parentcf9ab8413e0686442ef7e4d1a6b83c5bb224d06f (diff)
parente403a23ba840d534ba88e29cc484fd49f508b140 (diff)
downloadnova-63cf1277666c25e4d1ce560c5800a5117d5a7b4d.tar.gz
nova-63cf1277666c25e4d1ce560c5800a5117d5a7b4d.tar.xz
nova-63cf1277666c25e4d1ce560c5800a5117d5a7b4d.zip
Merge "Add conductor to nova-all."
-rwxr-xr-xbin/nova-all22
1 files changed, 20 insertions, 2 deletions
diff --git a/bin/nova-all b/bin/nova-all
index ace305727..d96b71604 100755
--- a/bin/nova-all
+++ b/bin/nova-all
@@ -50,6 +50,8 @@ from nova.vnc import xvp_proxy
CONF = cfg.CONF
+CONF.import_opt('manager', 'nova.conductor.api', group='conductor')
+CONF.import_opt('topic', 'nova.conductor.api', group='conductor')
CONF.import_opt('enabled_apis', 'nova.service')
LOG = logging.getLogger('nova.all')
@@ -74,9 +76,25 @@ if __name__ == '__main__':
LOG.exception(_('Failed to load %s') % mod.__name__)
for binary in ['nova-compute', 'nova-network', 'nova-scheduler',
- 'nova-cert']:
+ 'nova-cert', 'nova-conductor']:
+
+ # FIXME(sirp): Most service configs are defined in nova/service.py, but
+ # conductor has set a new precedent of storing these configs
+ # nova/<service>/api.py.
+ #
+ # We should update the existing services to use this new approach so we
+ # don't have to treat conductor differently here.
+ if binary == 'nova-conductor':
+ topic = CONF.conductor.topic
+ manager = CONF.conductor.manager
+ else:
+ topic = None
+ manager = None
+
try:
- launcher.launch_server(service.Service.create(binary=binary))
+ launcher.launch_server(service.Service.create(binary=binary,
+ topic=topic,
+ manager=manager))
except (Exception, SystemExit):
LOG.exception(_('Failed to load %s'), binary)
launcher.wait()