31884f77d5
The updated flake8 seems to have fixed a check for .format() issues that discovered a bug in one of our tests, which is fixed here. Also get rid of using "l" as a variable name and tag the imports that need to stay in order after setting an environment variable. Change-Id: I28de0ffa68f9bff4685d81fe7b5a5d8909e2313c
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
# Copyright 2012 Managed I.T.
|
|
#
|
|
# Author: Kiall Mac Innes <kiall@managedit.ie>
|
|
#
|
|
# 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.
|
|
import os
|
|
|
|
# Eventlet's GreenDNS Patching will prevent the resolution of names in
|
|
# the /etc/hosts file, causing problems for installs.
|
|
os.environ['EVENTLET_NO_GREENDNS'] = 'yes' # noqa
|
|
|
|
from oslo_log import log # noqa
|
|
from oslo_concurrency import lockutils # noqa
|
|
import oslo_messaging as messaging # noqa
|
|
|
|
_EXTRA_DEFAULT_LOG_LEVELS = [
|
|
'kazoo.client=WARN',
|
|
'keystone=INFO',
|
|
'oslo_service.loopingcall=WARN',
|
|
]
|
|
BASE_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '../'))
|
|
|
|
# Set some Oslo Log defaults
|
|
log.set_defaults(default_log_levels=log.get_default_log_levels() +
|
|
_EXTRA_DEFAULT_LOG_LEVELS)
|
|
|
|
# Set some Oslo RPC defaults
|
|
messaging.set_transport_defaults('designate')
|
|
|
|
# Set some Oslo Oslo Concurrency defaults
|
|
lockutils.set_defaults(lock_path='$state_path')
|