Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-05-09 02:04:06 +00:00 committed by Gerrit Code Review
commit 701d424edc
3 changed files with 0 additions and 9 deletions

View File

@ -13,11 +13,8 @@
from keystoneauth1 import identity
from keystoneauth1 import session as keystone_session
from oslo_config import cfg
from oslo_log import log as logging
from swiftclient import client as swift
LOG = logging.getLogger(__name__)
SERVICE = 'swift'
swift_client_opts = [
cfg.StrOpt(SERVICE + '_endpoint',

View File

@ -15,7 +15,6 @@ import os
import fixtures
from oslo_config import cfg
from oslo_log import log
from oslo_messaging import conffixture as messaging_conffixture
from oslo_utils import timeutils
from oslotest import base
@ -29,8 +28,6 @@ from karbor.tests.unit import conf_fixture
CONF = cfg.CONF
LOG = log.getLogger(__name__)
_DB_CACHE = None

View File

@ -13,7 +13,6 @@
import mock
from oslo_config import cfg
from oslo_log import log as logging
import oslo_messaging
from karbor import exception
@ -26,8 +25,6 @@ from karbor.services.protection import provider
from karbor.tests import base
from karbor.tests.unit.protection import fakes
LOG = logging.getLogger(__name__)
CONF = cfg.CONF