config options: fix the missed cli options of novncproxy

Commit I5da0ad8cd42ef8b969ec05c07c497238e92f1f41 moved the
'vnc' section to 'nova/conf/vnc.py', but forgot to register
cli options of 'novncproxy'.

Change-Id: I3732f237a110d33e51a0b7e31cd557ca45840af1
Closes-Bug: #1565698
(cherry picked from commit 2fe96e87fe)
This commit is contained in:
Allen Gao 2016-04-02 21:56:16 +08:00 committed by Matt Riedemann
parent 7105f888ee
commit 825d0f04dc
1 changed files with 2 additions and 0 deletions

View File

@ -23,10 +23,12 @@ import sys
from nova.cmd import baseproxy
import nova.conf
from nova.conf import vnc
from nova import config
CONF = nova.conf.CONF
vnc.register_cli_opts(CONF)
def main():