From 483b945bbead80aafa5ada24cf2169ccd72700cc Mon Sep 17 00:00:00 2001 From: Kennan Date: Wed, 21 Jan 2015 17:55:54 +0800 Subject: [PATCH] Fix the miss opts in genconfig Closes-Bug: #1413055 Change-Id: Ieb60df0a82e3dfc6303464584210744069f81078 --- magnum/opts.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/magnum/opts.py b/magnum/opts.py index 716fb6acf6..278f93d18a 100644 --- a/magnum/opts.py +++ b/magnum/opts.py @@ -32,8 +32,7 @@ import magnum.openstack.common.periodic_task def list_opts(): return [ ('DEFAULT', - itertools.chain(magnum.api.app.API_SERVICE_OPTS, - magnum.api.auth.AUTH_OPTS, + itertools.chain(magnum.api.auth.AUTH_OPTS, magnum.common.exception.exc_log_opts, magnum.common.magnum_keystoneclient.trust_opts, magnum.common.paths.PATH_OPTS, @@ -42,8 +41,11 @@ def list_opts(): .eventlet_backdoor_opts), magnum.openstack.common.log.generic_log_opts, magnum.openstack.common.log.log_opts, + magnum.openstack.common.log.common_cli_opts, + magnum.openstack.common.log.logging_cli_opts, magnum.openstack.common.periodic_task.periodic_opts, )), + ('api', magnum.api.app.API_SERVICE_OPTS), ('conductor', magnum.conductor.config.SERVICE_OPTS), ('database', magnum.db.sqlalchemy.models.sql_opts), ('docker', magnum.conductor.handlers.docker_conductor.docker_opts),