From c892a8cc8bbe528b4947124d2594c96856e55917 Mon Sep 17 00:00:00 2001 From: Allen Gao Date: Sat, 2 Apr 2016 13:35:29 +0800 Subject: [PATCH] config options: centralize baseproxy cli options The cli options of baseproxy got moved from "nova/cmd/novnc.py" to the new central location "nova/conf/novnc.py". Change-Id: Ifec51d57865150b0cf8ed79f6f48fcc512c15824 Implements: blueprint centralize-config-options-newton --- nova/conf/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nova/conf/__init__.py b/nova/conf/__init__.py index 6e4a0ba6a..30ac545b6 100644 --- a/nova/conf/__init__.py +++ b/nova/conf/__init__.py @@ -59,6 +59,7 @@ from nova.conf import mks from nova.conf import network # from nova.conf import neutron # from nova.conf import notification +from nova.conf import novnc # from nova.conf import osapi_v21 from nova.conf import pci from nova.conf import rdp @@ -124,6 +125,7 @@ keymgr.register_opts(CONF) network.register_opts(CONF) # neutron.register_opts(CONF) # notification.register_opts(CONF) +novnc.register_opts(CONF) # osapi_v21.register_opts(CONF) pci.register_opts(CONF) rdp.register_opts(CONF)