Merge "Make import of oslo libraries namespaceless"

This commit is contained in:
Jenkins 2015-02-20 08:53:55 +00:00 committed by Gerrit Code Review
commit 1a459d4097
134 changed files with 208 additions and 208 deletions

View File

@ -30,8 +30,8 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')): if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
sys.path.insert(0, possible_topdir) sys.path.insert(0, possible_topdir)
from oslo.config import cfg from oslo_config import cfg
from oslo import i18n import oslo_i18n as i18n
from oslo_log import log as logging from oslo_log import log as logging
import six import six

View File

@ -32,8 +32,8 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')): if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
sys.path.insert(0, possible_topdir) sys.path.insert(0, possible_topdir)
from oslo.config import cfg from oslo_config import cfg
from oslo import i18n import oslo_i18n as i18n
from oslo_log import log as logging from oslo_log import log as logging
import six import six

View File

@ -32,8 +32,8 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')): if os.path.exists(os.path.join(possible_topdir, 'heat', '__init__.py')):
sys.path.insert(0, possible_topdir) sys.path.insert(0, possible_topdir)
from oslo.config import cfg from oslo_config import cfg
from oslo import i18n import oslo_i18n as i18n
from oslo_log import log as logging from oslo_log import log as logging
import six import six

View File

@ -32,8 +32,8 @@ POSSIBLE_TOPDIR = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'heat', '__init__.py')): if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'heat', '__init__.py')):
sys.path.insert(0, POSSIBLE_TOPDIR) sys.path.insert(0, POSSIBLE_TOPDIR)
from oslo.config import cfg from oslo_config import cfg
from oslo import i18n import oslo_i18n as i18n
from oslo_log import log as logging from oslo_log import log as logging
from heat.common.i18n import _LC from heat.common.i18n import _LC

View File

@ -18,7 +18,7 @@ import sys
import keystoneclient.exceptions as kc_exception import keystoneclient.exceptions as kc_exception
from keystoneclient.v3 import client from keystoneclient.v3 import client
from oslo.config import cfg from oslo_config import cfg
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
import mock import mock
from oslo.utils import importutils from oslo_utils import importutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -14,9 +14,9 @@
"""Client Library for Keystone Resources.""" """Client Library for Keystone Resources."""
from keystoneclient.v2_0 import client as kc from keystoneclient.v2_0 import client as kc
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import importutils
from heat.common import exception from heat.common import exception
from heat.common.i18n import _LE from heat.common.i18n import _LE

View File

@ -14,8 +14,8 @@
import mock import mock
import mox import mox
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils from oslo_utils import importutils
from heat.common import exception from heat.common import exception
from heat.tests import common from heat.tests import common

View File

@ -11,7 +11,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.utils import importutils from oslo_utils import importutils
from heat.engine.clients import client_plugin from heat.engine.clients import client_plugin

View File

@ -19,7 +19,7 @@ import time
import urlparse import urlparse
from glanceclient import client as gc from glanceclient import client as gc
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 swiftclient import utils as swiftclient_utils from swiftclient import utils as swiftclient_utils
from troveclient import client as tc from troveclient import client as tc

View File

@ -13,8 +13,8 @@
import mock import mock
import mox import mox
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import uuidutils from oslo_utils import uuidutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -30,7 +30,7 @@ import re
import sys import sys
import tempfile import tempfile
from oslo.config import cfg from oslo_config import cfg
BASE_DIR = os.path.dirname(os.path.abspath(__file__)) BASE_DIR = os.path.dirname(os.path.abspath(__file__))
ROOT = os.path.abspath(os.path.join(BASE_DIR, "..", "..")) ROOT = os.path.abspath(os.path.join(BASE_DIR, "..", ".."))

View File

@ -14,6 +14,6 @@
# 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 i18n import oslo_i18n as i18n
i18n.enable_lazy() i18n.enable_lazy()

View File

@ -13,10 +13,10 @@
import hashlib import hashlib
from oslo.config import cfg from oslo_config import cfg
from oslo.serialization import jsonutils as json
from oslo.utils import importutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_serialization import jsonutils as json
from oslo_utils import importutils
import requests import requests
import webob import webob

View File

@ -13,8 +13,8 @@
"""Endpoint for heat AWS-compatible CloudWatch API.""" """Endpoint for heat AWS-compatible CloudWatch API."""
from oslo import messaging
from oslo_log import log as logging from oslo_log import log as logging
import oslo_messaging as messaging
import six import six
from heat.api.aws import exception from heat.api.aws import exception

View File

@ -23,7 +23,7 @@ import six
import traceback import traceback
from oslo.config import cfg from oslo_config import cfg
import webob import webob
from heat.common import exception from heat.common import exception

View File

@ -11,7 +11,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 heat.common import wsgi from heat.common import wsgi

View File

@ -11,7 +11,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 heat.api.openstack.v1 import util from heat.api.openstack.v1 import util
from heat.common import serializers from heat.common import serializers

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from oslo.messaging import exceptions from oslo_messaging import exceptions
from webob import exc from webob import exc
from heat.api.openstack.v1 import util from heat.api.openstack.v1 import util

View File

@ -19,7 +19,7 @@
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
from heat.common import context from heat.common import context

View File

@ -18,7 +18,7 @@ import logging
from keystoneclient import exceptions as keystone_exceptions from keystoneclient import exceptions as keystone_exceptions
from keystoneclient import session from keystoneclient import session
from oslo.config import cfg from oslo_config import cfg
from webob import exc from webob import exc
from heat.common import context from heat.common import context

View File

@ -14,8 +14,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils from oslo_utils import importutils
from webob import exc from webob import exc
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -18,7 +18,7 @@ import logging as sys_logging
import os import os
from eventlet.green import socket from eventlet.green import socket
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 heat.common.i18n import _ from heat.common.i18n import _

View File

@ -15,11 +15,11 @@ from keystoneclient import access
from keystoneclient.auth.identity import base from keystoneclient.auth.identity import base
from keystoneclient.auth.identity import v3 from keystoneclient.auth.identity import v3
from keystoneclient.auth import token_endpoint from keystoneclient.auth import token_endpoint
from oslo.config import cfg from oslo_config import cfg
from oslo.middleware import request_id as oslo_request_id
from oslo.utils import importutils
from oslo_context import context from oslo_context import context
from oslo_log import log as logging from oslo_log import log as logging
from oslo_middleware import request_id as oslo_request_id
from oslo_utils import importutils
from heat.common import exception from heat.common import exception
from heat.common.i18n import _LE from heat.common.i18n import _LE

View File

@ -14,7 +14,7 @@
import base64 import base64
from Crypto.Cipher import AES from Crypto.Cipher import AES
from oslo.config import cfg from oslo_config import cfg
from heat.openstack.common.crypto import utils from heat.openstack.common.crypto import utils

View File

@ -20,9 +20,9 @@ import uuid
import keystoneclient.exceptions as kc_exception import keystoneclient.exceptions as kc_exception
from keystoneclient import session from keystoneclient import session
from keystoneclient.v3 import client as kc_v3 from keystoneclient.v3 import client as kc_v3
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import importutils
from heat.common import context from heat.common import context
from heat.common import exception from heat.common import exception

View File

@ -16,7 +16,7 @@
# It's based on oslo.i18n usage in OpenStack Keystone project and # It's based on oslo.i18n usage in OpenStack Keystone project and
# recommendations from http://docs.openstack.org/developer/oslo.i18n/usage.html # recommendations from http://docs.openstack.org/developer/oslo.i18n/usage.html
from oslo import i18n import oslo_i18n as i18n
_translators = i18n.TranslatorFactory(domain='heat') _translators = i18n.TranslatorFactory(domain='heat')

View File

@ -14,7 +14,7 @@
import collections import collections
import re import re
from oslo.utils import encodeutils from oslo_utils import encodeutils
from six.moves.urllib import parse as urlparse from six.moves.urllib import parse as urlparse
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -16,9 +16,9 @@
# under the License. # under the License.
import eventlet import eventlet
from oslo.config import cfg from oslo_config import cfg
import oslo.messaging import oslo_messaging
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
from osprofiler import profiler from osprofiler import profiler
from heat.common import context from heat.common import context
@ -34,7 +34,7 @@ _ALIASES = {
} }
class RequestContextSerializer(oslo.messaging.Serializer): class RequestContextSerializer(oslo_messaging.Serializer):
def __init__(self, base): def __init__(self, base):
self._base = base self._base = base
@ -69,41 +69,41 @@ class RequestContextSerializer(oslo.messaging.Serializer):
return context.RequestContext.from_dict(ctxt) return context.RequestContext.from_dict(ctxt)
class JsonPayloadSerializer(oslo.messaging.NoOpSerializer): class JsonPayloadSerializer(oslo_messaging.NoOpSerializer):
@classmethod @classmethod
def serialize_entity(cls, context, entity): def serialize_entity(cls, context, entity):
return jsonutils.to_primitive(entity, convert_instances=True) return jsonutils.to_primitive(entity, convert_instances=True)
def setup(url=None, optional=False): def setup(url=None, optional=False):
"""Initialise the oslo.messaging layer.""" """Initialise the oslo_messaging layer."""
global TRANSPORT, NOTIFIER global TRANSPORT, NOTIFIER
if url and url.startswith("fake://"): if url and url.startswith("fake://"):
# NOTE(sileht): oslo.messaging fake driver uses time.sleep # NOTE(sileht): oslo_messaging fake driver uses time.sleep
# for task switch, so we need to monkey_patch it # for task switch, so we need to monkey_patch it
eventlet.monkey_patch(time=True) eventlet.monkey_patch(time=True)
if not TRANSPORT: if not TRANSPORT:
oslo.messaging.set_transport_defaults('heat') oslo_messaging.set_transport_defaults('heat')
exmods = ['heat.common.exception'] exmods = ['heat.common.exception']
try: try:
TRANSPORT = oslo.messaging.get_transport( TRANSPORT = oslo_messaging.get_transport(
cfg.CONF, url, allowed_remote_exmods=exmods, aliases=_ALIASES) cfg.CONF, url, allowed_remote_exmods=exmods, aliases=_ALIASES)
except oslo.messaging.InvalidTransportURL as e: except oslo_messaging.InvalidTransportURL as e:
TRANSPORT = None TRANSPORT = None
if not optional or e.url: if not optional or e.url:
# NOTE(sileht): oslo.messaging is configured but unloadable # NOTE(sileht): oslo_messaging is configured but unloadable
# so reraise the exception # so reraise the exception
raise raise
if not NOTIFIER and TRANSPORT: if not NOTIFIER and TRANSPORT:
serializer = RequestContextSerializer(JsonPayloadSerializer()) serializer = RequestContextSerializer(JsonPayloadSerializer())
NOTIFIER = oslo.messaging.Notifier(TRANSPORT, serializer=serializer) NOTIFIER = oslo_messaging.Notifier(TRANSPORT, serializer=serializer)
def cleanup(): def cleanup():
"""Cleanup the oslo.messaging layer.""" """Cleanup the oslo_messaging layer."""
global TRANSPORT, NOTIFIER global TRANSPORT, NOTIFIER
if TRANSPORT: if TRANSPORT:
TRANSPORT.cleanup() TRANSPORT.cleanup()
@ -111,21 +111,21 @@ def cleanup():
def get_rpc_server(target, endpoint): def get_rpc_server(target, endpoint):
"""Return a configured oslo.messaging rpc server.""" """Return a configured oslo_messaging rpc server."""
serializer = RequestContextSerializer(JsonPayloadSerializer()) serializer = RequestContextSerializer(JsonPayloadSerializer())
return oslo.messaging.get_rpc_server(TRANSPORT, target, [endpoint], return oslo_messaging.get_rpc_server(TRANSPORT, target, [endpoint],
executor='eventlet', executor='eventlet',
serializer=serializer) serializer=serializer)
def get_rpc_client(**kwargs): def get_rpc_client(**kwargs):
"""Return a configured oslo.messaging RPCClient.""" """Return a configured oslo_messaging RPCClient."""
target = oslo.messaging.Target(**kwargs) target = oslo_messaging.Target(**kwargs)
serializer = RequestContextSerializer(JsonPayloadSerializer()) serializer = RequestContextSerializer(JsonPayloadSerializer())
return oslo.messaging.RPCClient(TRANSPORT, target, return oslo_messaging.RPCClient(TRANSPORT, target,
serializer=serializer) serializer=serializer)
def get_notifier(publisher_id): def get_notifier(publisher_id):
"""Return a configured oslo.messaging notifier.""" """Return a configured oslo_messaging notifier."""
return NOTIFIER.prepare(publisher_id=publisher_id) return NOTIFIER.prepare(publisher_id=publisher_id)

View File

@ -11,7 +11,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.utils import strutils from oslo_utils import strutils
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -17,7 +17,7 @@
# Based on glance/api/policy.py # Based on glance/api/policy.py
"""Policy Engine For Heat""" """Policy Engine For Heat"""
from oslo.config import cfg from oslo_config import cfg
from heat.common import exception from heat.common import exception
from heat.openstack.common import policy from heat.openstack.common import policy

View File

@ -11,9 +11,9 @@
# 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 import messaging
from oslo_log import log as logging from oslo_log import log as logging
import oslo_messaging as messaging
import osprofiler.profiler import osprofiler.profiler
import osprofiler.web import osprofiler.web

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from oslo.utils import timeutils from oslo_utils import timeutils
SERVICE_KEYS = ( SERVICE_KEYS = (
SERVICE_ID, SERVICE_ID,

View File

@ -15,7 +15,7 @@ import itertools
import json import json
import re import re
from oslo.config import cfg from oslo_config import cfg
import six import six
import yaml import yaml

View File

@ -13,7 +13,7 @@
"""Utility for fetching a resource (e.g. a template) from a URL.""" """Utility for fetching a resource (e.g. a template) from a URL."""
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 import exceptions from requests import exceptions

View File

@ -34,9 +34,9 @@ from eventlet.green import socket
from eventlet.green import ssl from eventlet.green import ssl
import eventlet.greenio import eventlet.greenio
import eventlet.wsgi import eventlet.wsgi
from oslo.config import cfg from oslo_config import cfg
from oslo import i18n import oslo_i18n as i18n
from oslo.utils import importutils from oslo_utils import importutils
from paste import deploy from paste import deploy
import routes import routes
import routes.middleware import routes.middleware

View File

@ -24,8 +24,8 @@ The underlying driver is loaded . SQLAlchemy is currently the only
supported backend. supported backend.
''' '''
from oslo.config import cfg from oslo_config import cfg
from oslo.db import api from oslo_db import api
CONF = cfg.CONF CONF = cfg.CONF

View File

@ -15,10 +15,10 @@
import datetime import datetime
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo.db.sqlalchemy import session as db_session from oslo_db.sqlalchemy import session as db_session
from oslo.db.sqlalchemy import utils from oslo_db.sqlalchemy import utils
from oslo.utils import timeutils from oslo_utils import timeutils
import osprofiler.sqlalchemy import osprofiler.sqlalchemy
import six import six
import sqlalchemy import sqlalchemy

View File

@ -15,7 +15,7 @@ import itertools
import uuid import uuid
import migrate.changeset.constraint as constraint import migrate.changeset.constraint as constraint
from oslo.utils import timeutils from oslo_utils import timeutils
import sqlalchemy import sqlalchemy

View File

@ -12,7 +12,7 @@
# under the License. # under the License.
from migrate.versioning import util as migrate_util from migrate.versioning import util as migrate_util
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import six import six
import sqlalchemy import sqlalchemy
from sqlalchemy.orm import sessionmaker from sqlalchemy.orm import sessionmaker

View File

@ -11,7 +11,7 @@
# under the License. # under the License.
from migrate.versioning import util as migrate_util from migrate.versioning import util as migrate_util
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import six import six
import sqlalchemy import sqlalchemy
from sqlalchemy.orm import sessionmaker from sqlalchemy.orm import sessionmaker

View File

@ -13,7 +13,7 @@
import time import time
from migrate.versioning import util as migrate_util from migrate.versioning import util as migrate_util
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import sqlalchemy import sqlalchemy
from sqlalchemy.orm import sessionmaker from sqlalchemy.orm import sessionmaker

View File

@ -13,7 +13,7 @@
import os import os
from oslo.db.sqlalchemy import migration as oslo_migration from oslo_db.sqlalchemy import migration as oslo_migration
INIT_VERSION = 14 INIT_VERSION = 14

View File

@ -16,8 +16,8 @@ SQLAlchemy models for heat data.
import uuid import uuid
from oslo.db.sqlalchemy import models from oslo_db.sqlalchemy import models
from oslo.utils import timeutils from oslo_utils import timeutils
import six import six
import sqlalchemy import sqlalchemy
from sqlalchemy.ext import declarative from sqlalchemy.ext import declarative

View File

@ -13,8 +13,8 @@
import collections import collections
from oslo.utils import timeutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import timeutils
from heat.common.i18n import _ from heat.common.i18n import _
from heat.common.i18n import _LE from heat.common.i18n import _LE

View File

@ -13,9 +13,9 @@
import warnings import warnings
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import importutils
import six import six
from stevedore import extension from stevedore import extension

View File

@ -15,7 +15,7 @@ import abc
from keystoneclient import exceptions from keystoneclient import exceptions
from keystoneclient import session from keystoneclient import session
from oslo.config import cfg from oslo_config import cfg
import six import six
@ -136,4 +136,4 @@ class ClientPlugin(object):
if self.is_conflict(ex) or self.is_not_found(ex): if self.is_conflict(ex) or self.is_not_found(ex):
return return
else: else:
raise ex raise ex

View File

@ -13,8 +13,8 @@
from glanceclient import client as gc from glanceclient import client as gc
from glanceclient import exc from glanceclient import exc
from oslo.utils import uuidutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import uuidutils
from heat.common import exception from heat.common import exception
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -14,7 +14,7 @@
from neutronclient.common import exceptions from neutronclient.common import exceptions
from neutronclient.neutron import v2_0 as neutronV20 from neutronclient.neutron import v2_0 as neutronV20
from neutronclient.v2_0 import client as nc from neutronclient.v2_0 import client as nc
from oslo.utils import uuidutils from oslo_utils import uuidutils
from heat.common import exception from heat.common import exception
from heat.engine.clients import client_plugin from heat.engine.clients import client_plugin

View File

@ -24,8 +24,8 @@ import string
from novaclient import client as nc from novaclient import client as nc
from novaclient import exceptions from novaclient import exceptions
from novaclient import shell as novashell from novaclient import shell as novashell
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import uuidutils from oslo_utils import uuidutils
import six import six
from six.moves.urllib import parse as urlparse from six.moves.urllib import parse as urlparse

View File

@ -15,7 +15,7 @@ import collections
import numbers import numbers
import re import re
from oslo.utils import strutils from oslo_utils import strutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -14,7 +14,7 @@
import collections import collections
import itertools import itertools
from oslo.utils import encodeutils from oslo_utils import encodeutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -17,7 +17,7 @@ import itertools
import os.path import os.path
import warnings import warnings
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
import six import six

View File

@ -11,7 +11,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 heat.common import messaging from heat.common import messaging

View File

@ -15,8 +15,8 @@ import collections
import itertools import itertools
import json import json
from oslo.utils import encodeutils from oslo_utils import encodeutils
from oslo.utils import strutils from oslo_utils import strutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -15,7 +15,7 @@ import collections
import itertools import itertools
import sys import sys
from oslo.config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
import six import six

View File

@ -16,10 +16,10 @@ import contextlib
import datetime as dt import datetime as dt
import warnings import warnings
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import encodeutils
from oslo.utils import excutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import encodeutils
from oslo_utils import excutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -13,8 +13,8 @@
import math import math
from oslo.utils import excutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import excutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -13,7 +13,7 @@
import copy import copy
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 six import six

View File

@ -11,7 +11,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 heat.common import exception from heat.common import exception
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -11,8 +11,8 @@
# 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 excutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import excutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -12,7 +12,7 @@
# under the License. # under the License.
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
import six import six

View File

@ -10,7 +10,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 uuidutils from oslo_utils import uuidutils
import six import six
import warnings import warnings

View File

@ -12,8 +12,8 @@
# under the License. # under the License.
from heat.common import exception from heat.common import exception
from oslo.utils import excutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import excutils
import six import six
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -22,7 +22,7 @@ import string
import warnings import warnings
from novaclient import exceptions as nova_exceptions from novaclient import exceptions as nova_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
import six import six
from six.moves.urllib import parse as urlparse from six.moves.urllib import parse as urlparse

View File

@ -14,10 +14,10 @@
import copy import copy
import uuid import uuid
from oslo.config import cfg from oslo_config import cfg
from oslo.serialization import jsonutils
from oslo.utils import uuidutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_serialization import jsonutils
from oslo_utils import uuidutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -18,9 +18,9 @@ import time
import types import types
import eventlet import eventlet
from oslo.utils import encodeutils
from oslo.utils import excutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import encodeutils
from oslo_utils import excutils
import six import six
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -19,12 +19,12 @@ import socket
import warnings import warnings
import eventlet import eventlet
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging
from oslo.serialization import jsonutils
from oslo.utils import timeutils
from oslo.utils import uuidutils
from oslo_log import log as logging from oslo_log import log as logging
import oslo_messaging as messaging
from oslo_serialization import jsonutils
from oslo_utils import timeutils
from oslo_utils import uuidutils
from osprofiler import profiler from osprofiler import profiler
import requests import requests
import six import six

View File

@ -11,8 +11,8 @@
# 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_log import log as logging from oslo_log import log as logging
from oslo_utils import timeutils
from heat.common import context from heat.common import context
from heat.common.i18n import _LE from heat.common.i18n import _LE

View File

@ -12,7 +12,7 @@
# under the License. # under the License.
from keystoneclient.contrib.ec2 import utils as ec2_utils from keystoneclient.contrib.ec2 import utils as ec2_utils
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 six.moves.urllib import parse as urlparse from six.moves.urllib import parse as urlparse

View File

@ -17,9 +17,9 @@ import datetime
import re import re
import warnings import warnings
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import encodeutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import encodeutils
from osprofiler import profiler from osprofiler import profiler
import six import six

View File

@ -14,10 +14,10 @@
import contextlib import contextlib
import uuid import uuid
from oslo.config import cfg from oslo_config import cfg
from oslo import messaging
from oslo.utils import excutils
from oslo_log import log as logging from oslo_log import log as logging
import oslo_messaging as messaging
from oslo_utils import excutils
from heat.common import exception from heat.common import exception
from heat.common.i18n import _LI from heat.common.i18n import _LI

View File

@ -13,9 +13,9 @@
import hashlib import hashlib
from oslo.config import cfg from oslo_config import cfg
from oslo.serialization import jsonutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_serialization import jsonutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -14,8 +14,8 @@
import datetime import datetime
from oslo.utils import timeutils
from oslo_log import log as logging from oslo_log import log as logging
from oslo_utils import timeutils
from heat.common import exception from heat.common import exception
from heat.common.i18n import _ from heat.common.i18n import _

View File

@ -17,14 +17,14 @@ See http://docs.openstack.org/developer/oslo.i18n/usage.html
""" """
try: try:
import oslo.i18n import oslo_i18n
# NOTE(dhellmann): This reference to o-s-l-o will be replaced by the # NOTE(dhellmann): This reference to o-s-l-o will be replaced by the
# application name when this module is synced into the separate # application name when this module is synced into the separate
# repository. It is OK to have more than one translation function # repository. It is OK to have more than one translation function
# using the same domain, since there will still only be one message # using the same domain, since there will still only be one message
# catalog. # catalog.
_translators = oslo.i18n.TranslatorFactory(domain='heat') _translators = oslo_i18n.TranslatorFactory(domain='heat')
# The primary translation function using the well-known name "_" # The primary translation function using the well-known name "_"
_ = _translators.primary _ = _translators.primary

View File

@ -29,7 +29,7 @@ import base64
from Crypto.Hash import HMAC from Crypto.Hash import HMAC
from Crypto import Random from Crypto import Random
from oslo.utils import importutils from oslo_utils import importutils
import six import six
from heat.openstack.common._i18n import _ from heat.openstack.common._i18n import _

View File

@ -28,7 +28,7 @@ import traceback
import eventlet.backdoor import eventlet.backdoor
import greenlet import greenlet
from oslo.config import cfg from oslo_config import cfg
from heat.openstack.common._i18n import _LI from heat.openstack.common._i18n import _LI

View File

@ -20,7 +20,7 @@ import os
import stat import stat
import tempfile import tempfile
from oslo.utils import excutils from oslo_utils import excutils
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)

View File

@ -12,7 +12,7 @@
"""Compatibility shim for Kilo, while operators migrate to oslo.middleware.""" """Compatibility shim for Kilo, while operators migrate to oslo.middleware."""
from oslo.middleware import request_id from oslo_middleware import request_id
from heat.openstack.common import versionutils from heat.openstack.common import versionutils

View File

@ -95,8 +95,8 @@ import logging
import os import os
import re import re
from oslo.config import cfg from oslo_config import cfg
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import six import six
import six.moves.urllib.parse as urlparse import six.moves.urllib.parse as urlparse
import six.moves.urllib.request as urlrequest import six.moves.urllib.request as urlrequest

View File

@ -35,7 +35,7 @@ except ImportError:
import eventlet import eventlet
from eventlet import event from eventlet import event
from oslo.config import cfg from oslo_config import cfg
from heat.openstack.common import eventlet_backdoor from heat.openstack.common import eventlet_backdoor
from heat.openstack.common._i18n import _LE, _LI, _LW from heat.openstack.common._i18n import _LE, _LI, _LW

View File

@ -21,7 +21,7 @@ import functools
import inspect import inspect
import logging import logging
from oslo.config import cfg from oslo_config import cfg
import pkg_resources import pkg_resources
import six import six

View File

@ -11,7 +11,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.utils import timeutils from oslo_utils import timeutils
class CooldownMixin(object): class CooldownMixin(object):

View File

@ -11,7 +11,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 i18n import oslo_i18n as i18n
def fake_translate_msgid(msgid, domain, desired_locale=None): def fake_translate_msgid(msgid, domain, desired_locale=None):

View File

@ -11,7 +11,7 @@
# under the License. # under the License.
import mock import mock
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

View File

@ -14,8 +14,8 @@
import datetime import datetime
import mock import mock
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import timeutils from oslo_utils import timeutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -12,7 +12,7 @@
# under the License. # under the License.
import mock import mock
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

View File

@ -12,7 +12,7 @@
# under the License. # under the License.
import mock import mock
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

View File

@ -14,8 +14,8 @@
import datetime import datetime
import mock import mock
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import timeutils from oslo_utils import timeutils
import six import six
from heat.common import exception from heat.common import exception

View File

@ -16,7 +16,7 @@ import copy
from cinderclient import exceptions as cinder_exp from cinderclient import exceptions as cinder_exp
import mock import mock
import mox import mox
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

View File

@ -16,7 +16,7 @@ import datetime
import json import json
import uuid import uuid
from oslo.config import cfg from oslo_config import cfg
from oslo_utils import timeutils from oslo_utils import timeutils
import six import six

View File

@ -19,7 +19,7 @@ import time
import fixtures import fixtures
import mox import mox
from oslo.config import cfg from oslo_config import cfg
from oslotest import mockpatch from oslotest import mockpatch
import testscenarios import testscenarios
import testtools import testtools

View File

@ -25,10 +25,10 @@ import os
import uuid import uuid
from migrate.versioning import repository from migrate.versioning import repository
from oslo.db.sqlalchemy import test_base from oslo_db.sqlalchemy import test_base
from oslo.db.sqlalchemy import test_migrations from oslo_db.sqlalchemy import test_migrations
from oslo.db.sqlalchemy import utils from oslo_db.sqlalchemy import utils
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import pkg_resources as pkg import pkg_resources as pkg
from heat.db.sqlalchemy import migrate_repo from heat.db.sqlalchemy import migrate_repo

View File

@ -15,7 +15,7 @@ import json
import os import os
import mock import mock
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.api.aws import exception from heat.api.aws import exception

View File

@ -13,7 +13,7 @@
import os import os
from oslo.config import cfg from oslo_config import cfg
from heat.api.aws import exception from heat.api.aws import exception
import heat.api.cloudwatch.watch as watches import heat.api.cloudwatch.watch as watches

View File

@ -14,8 +14,8 @@
import json import json
from oslo.config import cfg from oslo_config import cfg
from oslo.utils import importutils from oslo_utils import importutils
import requests import requests
import six import six

View File

@ -14,10 +14,10 @@
import json import json
import mock import mock
from oslo.config import cfg from oslo_config import cfg
from oslo.messaging._drivers import common as rpc_common
from oslo.messaging import exceptions
from oslo_log import log from oslo_log import log
from oslo_messaging._drivers import common as rpc_common
from oslo_messaging import exceptions
import six import six
import webob.exc import webob.exc

View File

@ -18,7 +18,7 @@ from keystoneclient.auth.identity import v3 as ks_v3_auth
from keystoneclient import exceptions as keystone_exc from keystoneclient import exceptions as keystone_exc
from keystoneclient import session as ks_session from keystoneclient import session as ks_session
import mox import mox
from oslo.config import cfg from oslo_config import cfg
import webob import webob
from heat.common import auth_password from heat.common import auth_password

View File

@ -14,7 +14,7 @@
import json import json
import mock import mock
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

View File

@ -17,7 +17,7 @@ import json
from ceilometerclient import exc as ceilometerclient_exc from ceilometerclient import exc as ceilometerclient_exc
import mock import mock
import mox import mox
from oslo.config import cfg from oslo_config import cfg
import six import six
from heat.common import exception from heat.common import exception

Some files were not shown because too many files have changed in this diff Show More