From dac458af56f860e55cc1670ca0f4d86fb88a899e Mon Sep 17 00:00:00 2001 From: binean Date: Wed, 20 Jan 2016 17:08:47 +0800 Subject: [PATCH] TrivialFix: Remove deprecated option 'DEFAULT/verbose' Option "verbose" from group "DEFAULT" is deprecated for removal. Its value may be silently ignored in the future. If this option is not set explicitly, there is no such warning. Furthermore, the default value of verbose is true, so there is no need to set this value in config files. And we use oslo_config.generator to generate a sample file. We'd better fix the doc not encourage user to set verbose=True. Change-Id: Ie9a68e511425d34cbce04e416f258db3064d0479 --- devstack/plugin.sh | 1 - doc/source/adminref/quick_start.rst | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index f1f25e87d5..26d4137675 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -130,7 +130,6 @@ function configure_manila { iniset $MANILA_CONF DEFAULT auth_strategy keystone iniset $MANILA_CONF DEFAULT debug True - iniset $MANILA_CONF DEFAULT verbose True iniset $MANILA_CONF DEFAULT scheduler_driver $MANILA_SCHEDULER_DRIVER iniset $MANILA_CONF DEFAULT share_name_template ${SHARE_NAME_PREFIX}%s iniset $MANILA_CONF DATABASE connection `database_connection_url manila` diff --git a/doc/source/adminref/quick_start.rst b/doc/source/adminref/quick_start.rst index ac3547b425..7a3bae9352 100644 --- a/doc/source/adminref/quick_start.rst +++ b/doc/source/adminref/quick_start.rst @@ -318,8 +318,7 @@ Open Manila configuration file `/etc/manila/manila.conf`:: # Set scheduler driver with usage of filters. Recommended. scheduler_driver = manila.scheduler.drivers.filter.FilterScheduler - # Set following two opts to ‘True’ to get maximum info in logging. - verbose = True + # Set following opt to ‘True’ to get more info in logging. debug = True [london]