summaryrefslogtreecommitdiffstats
path: root/bin/nova-api
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2012-11-04 21:32:38 +0000
committerMark McLoughlin <markmc@redhat.com>2012-11-04 21:39:49 +0000
commit5749b8deb0f8f40fb10b41a397da82aae7e1a305 (patch)
tree84c67e0c8b59a8e4882077216b7f804eeccfea04 /bin/nova-api
parent8ce58defbe560b1da34d991b38ac64a9b4c8d654 (diff)
Switch from FLAGS to CONF in bin
Use the global CONF variable instead of FLAGS. This is purely a cleanup since FLAGS is already just another reference to CONF. We leave the nova.flags imports until a later cleanup commit since removing them may cause unpredictable problems due to config options not being registered. Change-Id: Id0c59b2dc8002ec89ccbc5e5d7986fb68d3a693d
Diffstat (limited to 'bin/nova-api')
-rwxr-xr-xbin/nova-api4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/nova-api b/bin/nova-api
index 4bcfa7f79..776152e43 100755
--- a/bin/nova-api
+++ b/bin/nova-api
@@ -42,12 +42,14 @@ from nova.openstack.common import log as logging
from nova import service
from nova import utils
+CONF = config.CONF
+
if __name__ == '__main__':
config.parse_args(sys.argv)
logging.setup("nova")
utils.monkey_patch()
launcher = service.ProcessLauncher()
- for api in flags.FLAGS.enabled_apis:
+ for api in CONF.enabled_apis:
server = service.WSGIService(api)
launcher.launch_server(server, workers=server.workers or 1)
launcher.wait()