Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-03-29 16:59:12 +00:00 committed by Gerrit Code Review
commit 4792e7f367
2 changed files with 1 additions and 8 deletions

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import os
import re
import socket
@ -28,8 +27,6 @@ from octavia.amphorae.backends.agent import api_server
from octavia.amphorae.backends.agent.api_server import util
from octavia.common import constants as consts
LOG = logging.getLogger(__name__)
class AmphoraInfo(object):
def __init__(self, osutils):

View File

@ -13,12 +13,8 @@
# under the License.
from keystoneauth1 import loading as ks_loading
from oslo_config import cfg
from oslo_log import log as logging
from octavia.common import constants
LOG = logging.getLogger(__name__)
from oslo_config import cfg
class KeystoneSession(object):