In latest devstack, nova-serialproxy fails to start because it crashed
when it tries to register the cli options.
The issue is that it tried to register an array of options by invoking
conf.register_cli_opt(), when multiple options need to be register
through conf.register_cli_opts().
Change-Id: Icb09f849290b78b5dd73c3c96a13ade02492ba3a
Closes-Bug: #
1647784
def register_cli_opts(conf):
conf.register_group(serial_opt_group)
- conf.register_cli_opt(CLI_OPTS, serial_opt_group)
+ conf.register_cli_opts(CLI_OPTS, serial_opt_group)
def list_opts():