summaryrefslogtreecommitdiffstats
path: root/bin/nova-vncproxy
diff options
context:
space:
mode:
authorKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-07-06 16:37:50 -0500
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-07-06 16:37:50 -0500
commitaca9fc681eda3dca1b954b0ea22e56d669689cec (patch)
treeb074763c69bb79c6091833bb92c47b71c98f0e7c /bin/nova-vncproxy
parentd764a483497afc5d029a82db14cc5cc88f45f4c0 (diff)
parent6b5f32f78d8339a7bd1ab48dd520ca4076961f98 (diff)
Pull-up from trunk (post-multi_nic)
Diffstat (limited to 'bin/nova-vncproxy')
-rwxr-xr-xbin/nova-vncproxy7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/nova-vncproxy b/bin/nova-vncproxy
index ccb97e3a3..72271df3a 100755
--- a/bin/nova-vncproxy
+++ b/bin/nova-vncproxy
@@ -96,6 +96,9 @@ if __name__ == "__main__":
service.serve()
- server = wsgi.Server()
- server.start(with_auth, FLAGS.vncproxy_port, host=FLAGS.vncproxy_host)
+ server = wsgi.Server("VNC Proxy",
+ with_auth,
+ host=FLAGS.vncproxy_host,
+ port=FLAGS.vncproxy_port)
+ server.start()
server.wait()