diff options
| author | Eric Day <eday@oddments.org> | 2010-08-18 18:25:16 -0700 |
|---|---|---|
| committer | Eric Day <eday@oddments.org> | 2010-08-18 18:25:16 -0700 |
| commit | 47e98cdae2a6233cb475c34207758a29c0ef7a4c (patch) | |
| tree | 82e83fb3d52735d9bc5e135212e0c92e670d0eec /bin/nova-api | |
| parent | 663667cdcf1bd16be33dc9b993123b7fc566caed (diff) | |
Removed old cloud_topic queue setup, it is no longer used.
Diffstat (limited to 'bin/nova-api')
| -rwxr-xr-x | bin/nova-api | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/nova-api b/bin/nova-api index 13baf22a7..a3ad5a0e1 100755 --- a/bin/nova-api +++ b/bin/nova-api @@ -26,7 +26,6 @@ from tornado import httpserver from tornado import ioloop from nova import flags -from nova import rpc from nova import server from nova import utils from nova.endpoint import admin @@ -43,14 +42,7 @@ def main(_argv): 'Admin': admin.AdminController()} _app = api.APIServerApplication(controllers) - conn = rpc.Connection.instance() - consumer = rpc.AdapterConsumer(connection=conn, - topic=FLAGS.cloud_topic, - proxy=controllers['Cloud']) - io_inst = ioloop.IOLoop.instance() - _injected = consumer.attach_to_tornado(io_inst) - http_server = httpserver.HTTPServer(_app) http_server.listen(FLAGS.cc_port) logging.debug('Started HTTP server on %s', FLAGS.cc_port) |
