From 08b661b7a94975c96daf7e31d060345f5253c367 Mon Sep 17 00:00:00 2001 From: Shih-Hao Li Date: Mon, 1 Feb 2016 13:16:58 -0800 Subject: [PATCH] Fix xvpvncproxy config path when running n-xvnc Fix xvpvncproxy config path due to Change I1e34a0f98de125c8b8b145377835d95035e2b472. Change-Id: I119ae7f2cb674294bc9d8c662959dc8d04a924a3 --- nova/vnc/xvp_proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/vnc/xvp_proxy.py b/nova/vnc/xvp_proxy.py index a544ac25a6..4b6014340d 100644 --- a/nova/vnc/xvp_proxy.py +++ b/nova/vnc/xvp_proxy.py @@ -183,5 +183,5 @@ def get_wsgi_server(): return wsgi.Server("XCP VNC Proxy", XCPVNCProxy(), protocol=SafeHttpProtocol, - host=CONF.xvpvncproxy_host, - port=CONF.xvpvncproxy_port) + host=CONF.vnc.xvpvncproxy_host, + port=CONF.vnc.xvpvncproxy_port)