a65a2ee5d2
upcoming policy-related changes need a properly initialized global oslo_config's CONF instance, which inspector's unit tests currently lack. As a side effect of implementing this, the 'dbsync' module was changed to not register it's CLI options right on its import. Also, setting default log levels was moved to a function which is already registered as the one providing defaults to options in oslo_config's entrypoints. Config sample is updated accordingly. Change-Id: I20bc537605062900d00fcc0343172774c1cd1363
30 lines
933 B
Python
30 lines
933 B
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from oslo_log import log
|
|
|
|
from ironic_inspector import conf
|
|
|
|
LOG = log.getLogger(__name__)
|
|
CONF = conf.cfg.CONF
|
|
|
|
|
|
def prepare_service(args=None):
|
|
args = [] if args is None else args
|
|
log.register_options(CONF)
|
|
conf.set_config_defaults()
|
|
conf.parse_args(args)
|
|
log.setup(CONF, 'ironic_inspector')
|
|
|
|
LOG.debug("Configuration:")
|
|
CONF.log_opt_values(LOG, log.DEBUG)
|