Remove unused logging import

Change-Id: Id44dbb133f21d77f6596c34b7db60ee5b079ae52
This commit is contained in:
Anh Tran 2017-02-17 13:42:38 +07:00
parent 8d7f95ffda
commit 92af1dfb28
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):