diff options
| author | Kevin L. Mitchell <kevin.mitchell@rackspace.com> | 2011-07-06 16:37:50 -0500 |
|---|---|---|
| committer | Kevin L. Mitchell <kevin.mitchell@rackspace.com> | 2011-07-06 16:37:50 -0500 |
| commit | aca9fc681eda3dca1b954b0ea22e56d669689cec (patch) | |
| tree | b074763c69bb79c6091833bb92c47b71c98f0e7c /bin/nova-direct-api | |
| parent | d764a483497afc5d029a82db14cc5cc88f45f4c0 (diff) | |
| parent | 6b5f32f78d8339a7bd1ab48dd520ca4076961f98 (diff) | |
Pull-up from trunk (post-multi_nic)
Diffstat (limited to 'bin/nova-direct-api')
| -rwxr-xr-x | bin/nova-direct-api | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/nova-direct-api b/bin/nova-direct-api index 83ec72722..c6cf9b2ff 100755 --- a/bin/nova-direct-api +++ b/bin/nova-direct-api @@ -93,6 +93,9 @@ if __name__ == '__main__': with_req = direct.PostParamsMiddleware(with_json) with_auth = direct.DelegatedAuthMiddleware(with_req) - server = wsgi.Server() - server.start(with_auth, FLAGS.direct_port, host=FLAGS.direct_host) + server = wsgi.Server("Direct API", + with_auth, + host=FLAGS.direct_host, + port=FLAGS.direct_port) + server.start() server.wait() |
