Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-02-17 18:50:23 +00:00 committed by Gerrit Code Review
commit 197c454646
3 changed files with 0 additions and 10 deletions

View File

@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from oslo_config import cfg
import pecan
from wsme import types as wtypes
@ -26,7 +24,6 @@ from octavia.common import exceptions
CONF = cfg.CONF
CONF.import_group('quotas', 'octavia.common.config')
LOG = logging.getLogger(__name__)
class QuotasController(base.BaseController):

View File

@ -12,14 +12,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from taskflow import task
from octavia.controller.worker import task_utils as task_utilities
LOG = logging.getLogger(__name__)
class BaseLifecycleTask(task.Task):
"""Base task to instansiate common classes."""

View File

@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from tempest import config
from tempest import test
@ -22,8 +21,6 @@ from octavia.tests.tempest.v1.scenario import base
config = config.CONF
LOG = logging.getLogger(__name__)
class TestLoadBalancerTreeMinimal(base.BaseTestCase):