Merge "Drop use of 'oslo' namespace package"

This commit is contained in:
Jenkins 2015-05-04 17:10:30 +00:00 committed by Gerrit Code Review
commit 3b84f30c16
100 changed files with 108 additions and 108 deletions

View File

@ -20,7 +20,7 @@ eventlet.monkey_patch()
import os import os
import socket import socket
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
from oslo_concurrency import lockutils from oslo_concurrency import lockutils
from oslo import messaging from oslo import messaging

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
cfg.CONF.register_group(cfg.OptGroup( cfg.CONF.register_group(cfg.OptGroup(
name='service:agent', title="Configuration for the Agent Service" name='service:agent', title="Configuration for the Agent Service"

View File

@ -19,7 +19,7 @@ import dns.rcode
import dns.message import dns.message
import dns.flags import dns.flags
import dns.opcode import dns.opcode
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import utils from designate import utils

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import utils from designate import utils

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
cfg.CONF.register_group(cfg.OptGroup( cfg.CONF.register_group(cfg.OptGroup(

View File

@ -13,7 +13,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import pecan.deploy import pecan.deploy
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import pecan import pecan
import pecan.deploy import pecan.deploy
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.api.v2 import patches from designate.api.v2 import patches

View File

@ -15,7 +15,7 @@ from dns import zone as dnszone
from dns import exception as dnsexception from dns import exception as dnsexception
import pecan import pecan
from oslo_log import log as logging from oslo_log import log as logging
from oslo.config import cfg from oslo_config import cfg
from designate.api.v2.controllers import rest from designate.api.v2.controllers import rest
from designate import dnsutils from designate import dnsutils

View File

@ -12,7 +12,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from stevedore import named from stevedore import named

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import urllib import urllib
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -15,12 +15,12 @@
# under the License. # under the License.
import flask import flask
import webob.dec import webob.dec
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging
from oslo_middleware import base from oslo_middleware import base
from oslo_middleware import request_id from oslo_middleware import request_id
from oslo.serialization import jsonutils as json from oslo_serialization import jsonutils as json
from oslo_utils import strutils from oslo_utils import strutils
from designate import exceptions from designate import exceptions

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from paste import deploy from paste import deploy

View File

@ -20,9 +20,9 @@ from werkzeug import exceptions as wexceptions
from werkzeug import wrappers from werkzeug import wrappers
from werkzeug.routing import BaseConverter from werkzeug.routing import BaseConverter
from werkzeug.routing import ValidationError from werkzeug.routing import ValidationError
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
from designate import exceptions from designate import exceptions
from designate import utils from designate import utils

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import flask import flask
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import flask import flask
from oslo_log import log as logging from oslo_log import log as logging
from oslo.config import cfg from oslo_config import cfg
from designate import schema from designate import schema
from designate.central import rpcapi as central_rpcapi from designate.central import rpcapi as central_rpcapi

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import pecan.deploy import pecan.deploy
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.api.v2 import patches # flake8: noqa from designate.api.v2 import patches # flake8: noqa

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import pecan import pecan
import pecan.deploy import pecan.deploy
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.api.v2 import patches from designate.api.v2 import patches

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from stevedore import named from stevedore import named

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import pecan import pecan
from oslo.config import cfg from oslo_config import cfg
from designate import exceptions from designate import exceptions
from designate import utils from designate import utils

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import pecan import pecan
from oslo.config import cfg from oslo_config import cfg
from designate.api.v2.controllers import rest from designate.api.v2.controllers import rest
from designate.objects.adapters import DesignateAdapter from designate.objects.adapters import DesignateAdapter

View File

@ -16,7 +16,7 @@
from inspect import ismethod from inspect import ismethod
from inspect import getargspec from inspect import getargspec
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import pecan.core import pecan.core
from designate import exceptions from designate import exceptions

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import flask import flask
from oslo.config import cfg from oslo_config import cfg
def factory(global_config, **local_conf): def factory(global_config, **local_conf):

View File

@ -22,7 +22,7 @@ import dns.flags
import dns.rcode import dns.rcode
import dns.message import dns.message
import dns.opcode import dns.opcode
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.i18n import _LI from designate.i18n import _LI

View File

@ -17,8 +17,8 @@ import os
import dns import dns
import dns.resolver import dns.resolver
from oslo.config import cfg from oslo_concurrency import lockutils
from oslo.concurrency import lockutils from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.backend.agent_backend import base from designate.backend.agent_backend import base

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import abc import abc
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.i18n import _LI from designate.i18n import _LI

View File

@ -17,7 +17,7 @@ import json
import time import time
from eventlet import Timeout from eventlet import Timeout
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
import requests import requests
from requests.adapters import HTTPAdapter from requests.adapters import HTTPAdapter

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
from sqlalchemy import MetaData, Table, Column, String, Integer from sqlalchemy import MetaData, Table, Column, String, Integer
from oslo.config import cfg from oslo_config import cfg
from designate.sqlalchemy.types import UUID from designate.sqlalchemy.types import UUID

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
cfg.CONF.register_group(cfg.OptGroup( cfg.CONF.register_group(cfg.OptGroup(
name='service:central', title="Configuration for Central Service" name='service:central', title="Configuration for Central Service"

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo import messaging from oslo import messaging

View File

@ -24,7 +24,7 @@ import string
import random import random
import time import time
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import excutils from oslo_utils import excutils

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import service from designate import service

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.openstack.common import service from designate.openstack.common import service

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import service from designate import service

View File

@ -19,7 +19,7 @@ import os
import sys import sys
import eventlet import eventlet
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from stevedore.extension import ExtensionManager from stevedore.extension import ExtensionManager

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import service from designate import service

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import service from designate import service

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import service from designate import service

View File

@ -23,7 +23,7 @@ import dns.zone
import eventlet import eventlet
from dns import rdatatype from dns import rdatatype
from oslo_log import log as logging from oslo_log import log as logging
from oslo.config import cfg from oslo_config import cfg
from designate import context from designate import context
from designate import exceptions from designate import exceptions

View File

@ -16,7 +16,7 @@
import os import os
from migrate.versioning import api as versioning_api from migrate.versioning import api as versioning_api
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.manage import base from designate.manage import base

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import pprint import pprint
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.manage import base from designate.manage import base

View File

@ -16,7 +16,7 @@
import os import os
from migrate.versioning import api as versioning_api from migrate.versioning import api as versioning_api
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.manage import base from designate.manage import base

View File

@ -16,7 +16,7 @@
import os import os
from migrate.versioning import api as versioning_api from migrate.versioning import api as versioning_api
from oslo.config import cfg from oslo_config import cfg
from oslo_db.sqlalchemy.migration_cli import manager as migration_manager from oslo_db.sqlalchemy.migration_cli import manager as migration_manager
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -15,7 +15,7 @@
import csv import csv
import os import os
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate import dnsutils from designate import dnsutils

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo import messaging from oslo import messaging
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.pool_manager import rpcapi as pool_mngr_api from designate.pool_manager import rpcapi as pool_mngr_api

View File

@ -20,7 +20,7 @@ import dns.rcode
import dns.rdataclass import dns.rdataclass
import dns.rdatatype import dns.rdatatype
import dns.message import dns.message
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -23,7 +23,7 @@ import dns.flags
import dns.rcode import dns.rcode
import dns.message import dns.message
import dns.opcode import dns.opcode
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.mdns import base from designate.mdns import base

View File

@ -12,7 +12,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo import messaging from oslo import messaging

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import utils from designate import utils

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_utils import timeutils from oslo_utils import timeutils
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import logging import logging
from oslo.config import cfg from oslo_config import cfg
from designate.network_api.base import NetworkAPI from designate.network_api.base import NetworkAPI

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import eventlet.patcher import eventlet.patcher
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -19,7 +19,7 @@
from neutronclient.v2_0 import client as clientv20 from neutronclient.v2_0 import client as clientv20
from neutronclient.common import exceptions as neutron_exceptions from neutronclient.common import exceptions as neutron_exceptions
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -16,7 +16,7 @@
# under the License. # under the License.
import abc import abc
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.notification_handler.base import BaseAddressHandler from designate.notification_handler.base import BaseAddressHandler

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.notification_handler.base import BaseAddressHandler from designate.notification_handler.base import BaseAddressHandler

View File

@ -16,7 +16,7 @@
# #
# Copied: nova.notifications # Copied: nova.notifications
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import rpc from designate import rpc

View File

@ -14,7 +14,7 @@
import urllib import urllib
from oslo_log import log as logging from oslo_log import log as logging
from oslo.config import cfg from oslo_config import cfg
from designate.objects.adapters import base from designate.objects.adapters import base
from designate.objects import base as obj_base from designate.objects import base as obj_base

View File

@ -19,7 +19,7 @@ import six
from stevedore import driver from stevedore import driver
from stevedore import enabled from stevedore import enabled
from stevedore import extension from stevedore import extension
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo_policy import policy from oslo_policy import policy
from oslo_policy import opts from oslo_policy import opts

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
CONF = cfg.CONF CONF = cfg.CONF

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate import exceptions from designate import exceptions
from designate import objects from designate import objects

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_db import options from oslo_db import options
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo import messaging from oslo import messaging

View File

@ -16,7 +16,7 @@
from contextlib import contextmanager from contextlib import contextmanager
from decimal import Decimal from decimal import Decimal
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging
from oslo_concurrency import lockutils from oslo_concurrency import lockutils

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.quota.base import Quota from designate.quota.base import Quota

View File

@ -16,7 +16,7 @@
import abc import abc
import six import six
from oslo.config import cfg from oslo_config import cfg
from designate import exceptions from designate import exceptions
from designate.plugin import DriverPlugin from designate.plugin import DriverPlugin

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -26,11 +26,11 @@ __all__ = [
'TRANSPORT_ALIASES', 'TRANSPORT_ALIASES',
] ]
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging from oslo import messaging
from oslo.messaging import server as msg_server from oslo_messaging import server as msg_server
from oslo.messaging.rpc import dispatcher as rpc_dispatcher from oslo_messaging.rpc import dispatcher as rpc_dispatcher
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import designate.context import designate.context
import designate.exceptions import designate.exceptions

View File

@ -26,7 +26,7 @@ import time
import six import six
import eventlet.wsgi import eventlet.wsgi
from oslo import messaging from oslo import messaging
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo_log import loggers from oslo_log import loggers

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
cfg.CONF.register_group(cfg.OptGroup( cfg.CONF.register_group(cfg.OptGroup(
name='service:sink', title="Configuration for Sink Service" name='service:sink', title="Configuration for Sink Service"

View File

@ -14,7 +14,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo import messaging from oslo import messaging

View File

@ -16,7 +16,7 @@
"""Session Handling for SQLAlchemy backend.""" """Session Handling for SQLAlchemy backend."""
from oslo.config import cfg from oslo_config import cfg
from oslo_db.sqlalchemy import session from oslo_db.sqlalchemy import session
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -16,7 +16,7 @@
import time import time
import hashlib import hashlib
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo_db import options from oslo_db import options
from sqlalchemy import select, distinct, func from sqlalchemy import select, distinct, func

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_utils import timeutils from oslo_utils import timeutils
from sqlalchemy import Integer, String, DateTime, Unicode, UniqueConstraint, \ from sqlalchemy import Integer, String, DateTime, Unicode, UniqueConstraint, \

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from sqlalchemy.schema import Table, Column, MetaData from sqlalchemy.schema import Table, Column, MetaData
from migrate.changeset.constraint import UniqueConstraint from migrate.changeset.constraint import UniqueConstraint

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from sqlalchemy.schema import Table, MetaData from sqlalchemy.schema import Table, MetaData
from sqlalchemy.sql import select from sqlalchemy.sql import select

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from sqlalchemy import Enum from sqlalchemy import Enum
from sqlalchemy.schema import Table, MetaData, Column from sqlalchemy.schema import Table, MetaData, Column
from migrate.changeset.constraint import UniqueConstraint from migrate.changeset.constraint import UniqueConstraint

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.utils import timeutils from oslo_utils import timeutils
from sqlalchemy import DateTime, Enum, Integer, String, ForeignKeyConstraint from sqlalchemy import DateTime, Enum, Integer, String, ForeignKeyConstraint
from sqlalchemy.schema import Column, MetaData, Table from sqlalchemy.schema import Column, MetaData, Table

View File

@ -18,7 +18,7 @@
from sqlalchemy import Integer, String, DateTime, ForeignKeyConstraint from sqlalchemy import Integer, String, DateTime, ForeignKeyConstraint
from sqlalchemy.schema import Table, Column, MetaData from sqlalchemy.schema import Table, Column, MetaData
from sqlalchemy.sql import select from sqlalchemy.sql import select
from oslo.config import cfg from oslo_config import cfg
from designate import utils from designate import utils
from designate.sqlalchemy.types import UUID from designate.sqlalchemy.types import UUID

View File

@ -17,7 +17,7 @@ from sqlalchemy import (Table, MetaData, Column, String, Text, Integer, CHAR,
DateTime, Enum, Boolean, Unicode, UniqueConstraint, DateTime, Enum, Boolean, Unicode, UniqueConstraint,
ForeignKeyConstraint) ForeignKeyConstraint)
from oslo.config import cfg from oslo_config import cfg
from oslo_utils import timeutils from oslo_utils import timeutils
from designate import utils from designate import utils

View File

@ -21,9 +21,9 @@ import inspect
from testtools import testcase from testtools import testcase
from oslotest import base from oslotest import base
from oslo_log import log as logging from oslo_log import log as logging
from oslo.config import cfg from oslo_config import cfg
from oslo.config import fixture as cfg_fixture from oslo_config import fixture as cfg_fixture
from oslo.messaging import conffixture as messaging_fixture from oslo_messaging import conffixture as messaging_fixture
from designate import policy from designate import policy
from designate import utils from designate import utils

View File

@ -21,7 +21,7 @@ import tempfile
import fixtures import fixtures
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import importutils from oslo_utils import importutils
from oslo.config import cfg from oslo_config import cfg
from designate import policy from designate import policy
from designate import network_api from designate import network_api

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate.backend import agent_backend from designate.backend import agent_backend
from designate.agent import service from designate.agent import service

View File

@ -14,7 +14,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate.tests.test_api.test_admin import AdminApiTestCase from designate.tests.test_api.test_admin import AdminApiTestCase

View File

@ -14,7 +14,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate.tests.test_api.test_admin import AdminApiTestCase from designate.tests.test_api.test_admin import AdminApiTestCase

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from dns import zone as dnszone from dns import zone as dnszone
from oslo.config import cfg from oslo_config import cfg
from designate.tests.test_api.test_admin import AdminApiTestCase from designate.tests.test_api.test_admin import AdminApiTestCase

View File

@ -15,7 +15,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import mock import mock
from oslo.config import cfg from oslo_config import cfg
from oslo_messaging.notify import notifier from oslo_messaging.notify import notifier
from designate.tests.test_api import ApiTestCase from designate.tests.test_api import ApiTestCase

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo_log import log as logging from oslo_log import log as logging
from oslo.serialization import jsonutils as json from oslo_serialization import jsonutils as json
from designate.api import v1 as api_v1 from designate.api import v1 as api_v1
from designate.api import middleware from designate.api import middleware

View File

@ -18,7 +18,7 @@ import datetime
from mock import patch from mock import patch
from oslo import messaging from oslo import messaging
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -13,7 +13,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from designate.tests.test_api.test_v2 import ApiV2TestCase from designate.tests.test_api.test_v2 import ApiV2TestCase

View File

@ -12,7 +12,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate.tests.test_api.test_v2 import ApiV2TestCase from designate.tests.test_api.test_v2 import ApiV2TestCase

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from mock import patch from mock import patch
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging

View File

@ -20,7 +20,7 @@ import random
import mock import mock
import testtools import testtools
from testtools.matchers import GreaterThan from testtools.matchers import GreaterThan
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from oslo_db import exception as db_exception from oslo_db import exception as db_exception
from oslo_messaging.notify import notifier from oslo_messaging.notify import notifier

View File

@ -21,7 +21,7 @@ import dns.rdatatype
import dns.resolver import dns.resolver
import dns.rrset import dns.rrset
import mock import mock
from oslo.config import cfg from oslo_config import cfg
from designate import context from designate import context
from designate import objects from designate import objects

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
from neutronclient.v2_0 import client as clientv20 from neutronclient.v2_0 import client as clientv20
from neutronclient.common import exceptions as neutron_exceptions from neutronclient.common import exceptions as neutron_exceptions
from oslo.config import cfg from oslo_config import cfg
from mock import patch from mock import patch
import testtools import testtools

View File

@ -14,7 +14,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from oslo import messaging from oslo import messaging
from oslo.config import cfg from oslo_config import cfg
from mock import call from mock import call
from mock import patch from mock import patch

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
from testscenarios import load_tests_apply_scenarios as load_tests # noqa from testscenarios import load_tests_apply_scenarios as load_tests # noqa
import testtools import testtools
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import quota from designate import quota

View File

@ -18,7 +18,7 @@ import math
import mock import mock
import testtools import testtools
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log as logging from oslo_log import log as logging
from designate import exceptions from designate import exceptions

View File

@ -23,7 +23,7 @@ import uuid
import six import six
import pkg_resources import pkg_resources
from jinja2 import Template from jinja2 import Template
from oslo.config import cfg from oslo_config import cfg
from oslo_concurrency import processutils from oslo_concurrency import processutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import timeutils from oslo_utils import timeutils