Remove logging import unused

Change-Id: Ica1f91a0f8258f59e7d6590b4997c63855806ca1
This commit is contained in:
Cao Xuan Hoang 2017-02-15 13:59:28 +07:00
parent c4a8511260
commit f3f87f8d7f
6 changed files with 0 additions and 19 deletions

View File

@ -17,7 +17,6 @@ from datetime import datetime
import itertools
from neutron_lib import constants
from oslo_log import log as logging
import oslo_messaging
from oslo_utils import uuidutils
@ -26,9 +25,6 @@ from neutron.common import rpc as n_rpc
from neutron.common import topics
LOG = logging.getLogger(__name__)
def create_consumers(endpoints, prefix, topic_details, start_listening=True):
"""Create agent RPC consumers.

View File

@ -14,7 +14,6 @@
# under the License.
from neutron_lib.plugins import directory
from oslo_log import log
from neutron.api import extensions
from neutron.api.v2 import attributes
@ -26,8 +25,6 @@ from neutron.pecan_wsgi.controllers import utils
from neutron import policy
from neutron.quota import resource_registry
LOG = log.getLogger(__name__)
def initialize_all():
manager.init()

View File

@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log
from neutron.common import exceptions as n_exc
from neutron.db import api as db_api
from neutron.db import db_base_plugin_common
@ -26,8 +24,6 @@ from neutron.services.qos.drivers import manager
from neutron.services.qos.notification_drivers import manager as driver_mgr
from neutron.services.qos import qos_consts
LOG = log.getLogger(__name__)
class QoSPlugin(qos.QoSPluginBase):
"""Implementation of the Neutron QoS Service Plugin.

View File

@ -19,13 +19,10 @@ from keystoneauth1 import exceptions as ks_exc
from keystoneauth1 import loading as ks_loading
from keystoneauth1 import session
from oslo_config import cfg
from oslo_log import log as logging
from neutron._i18n import _
from neutron.common import exceptions as n_exc
LOG = logging.getLogger(__name__)
PLACEMENT_API_WITH_AGGREGATES = 'placement 1.1'

View File

@ -13,7 +13,6 @@
# under the License.
from neutron_lib import exceptions as n_exc
from oslo_log import log
from oslo_utils import timeutils
from sqlalchemy.orm import session as se
@ -21,8 +20,6 @@ from neutron._i18n import _LW
from neutron.db import api as db_api
from neutron.db import standard_attr
LOG = log.getLogger(__name__)
CHANGED_SINCE = 'changed_since'

View File

@ -13,7 +13,6 @@
# under the License.
import netaddr
from oslo_log import log as logging
from tempest.common.utils.linux import remote_client
from tempest.common import waiters
from tempest.lib.common.utils import data_utils
@ -25,7 +24,6 @@ from neutron.tests.tempest.scenario import base
from neutron.tests.tempest.scenario import constants
CONF = config.CONF
LOG = logging.getLogger(__name__)
CONFIGURE_VLAN_INTERFACE_COMMANDS = (
'IFACE=$(ip l | grep "^[0-9]*: e" | cut -d \: -f 2) && '