From a339ce2faf93e6da0bbdfcc6600b3b8940c83f51 Mon Sep 17 00:00:00 2001 From: "Kyle L. Henderson" Date: Fri, 5 Feb 2016 19:10:01 -0600 Subject: [PATCH] Update nova vnc config options location The nova vnc configuration options have moved from nova.vnc to nova.conf.vnc. Change-Id: I25f2ff5fc6e6c367ac4ccdc20bbc1afdb28d5631 --- nova_powervm/conf/powervm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova_powervm/conf/powervm.py b/nova_powervm/conf/powervm.py index e768ef4c..b30a7d82 100644 --- a/nova_powervm/conf/powervm.py +++ b/nova_powervm/conf/powervm.py @@ -20,7 +20,7 @@ CONF = cfg.CONF # Pull in the imports that nova-powervm uses so they are validated CONF.import_opt('host', 'nova.netconf') CONF.import_opt('my_ip', 'nova.netconf') -CONF.import_opt('vncserver_proxyclient_address', 'nova.vnc', group='vnc') +CONF.import_opt('vncserver_proxyclient_address', 'nova.conf.vnc', group='vnc') CONF.import_opt('vif_plugging_is_fatal', 'nova.virt.driver') CONF.import_opt('vif_plugging_timeout', 'nova.virt.driver')