Add a hook for nova.cmd.spicehtml5proxy

The cmd/ folders are excluded from the autohelp imports to avoid ending
up with a bunch of CLI options. nova/cmd/spicehtml5proxy.py holds real
configuration options and needs to be imported.

Change-Id: Ic0f8066332a45cae253ad3e03f4717f1887e16ee
Partial-Bug: #1394595
This commit is contained in:
Gauvain Pocentek 2015-01-20 18:00:41 +01:00
parent f5f53acae8
commit da3995150d

View File

@ -35,5 +35,10 @@ def glance_store_config():
pass
def nova_spice():
import nova.cmd.spicehtml5proxy # noqa
HOOKS = {'keystone.common.config': keystone_config,
'glance.common.config': glance_store_config}
'glance.common.config': glance_store_config,
'nova.spice': nova_spice}