Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-02-24 19:56:44 +00:00 committed by Gerrit Code Review
commit 5f8e5f628c
2 changed files with 0 additions and 6 deletions

View File

@ -28,7 +28,6 @@ from nova.api.openstack import wsgi
from nova import compute
from nova import utils
from oslo_config import cfg
from oslo_log import log as logging
from webob import exc
@ -50,8 +49,6 @@ reservation_opts = [
CONF = cfg.CONF
CONF.register_opts(reservation_opts)
LOG = logging.getLogger(__name__)
class DefaultReservationController(wsgi.Controller):
"""Add default reservation flags to every VM started."""

View File

@ -18,9 +18,6 @@ from nova import test
from nova.tests.unit.scheduler import fakes
from nova.virt import fake
from oslo_config import cfg
from oslo_log import log as logging
LOG = logging.getLogger(__name__)
class BlazarFilterTestCase(test.TestCase):