Drop use of 'oslo' namespace package

The Oslo libraries have moved all of their code out of the 'oslo'
namespace package into per-library packages. The namespace package was
retained during kilo for backwards compatibility, but will be removed by
the liberty-2 milestone. This change removes the use of the namespace
package, replacing it with the new package names.

The patches in the libraries will be put on hold until application
patches have landed, or L2, whichever comes first. At that point, new
versions of the libraries without namespace packages will be released as
a major version update.

Please merge this patch, or an equivalent, before L2 to avoid problems
with those library releases.

Blueprint: remove-namespace-packages
https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages

Change-Id: Ib9106f86b1a04825c24bb2be284c17590f941d3c
This commit is contained in:
Doug Hellmann 2015-06-17 15:57:42 +00:00
parent 1694086cd1
commit 3d26fc9a1c
14 changed files with 17 additions and 17 deletions

View File

@ -15,7 +15,7 @@
import os
from oslo.config import cfg
from oslo_config import cfg
CONF = cfg.CONF
CONF.import_group('haproxy_amphora', 'octavia.common.config')

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.config import cfg
from oslo_config import cfg
from pecan import rest
from stevedore import driver as stevedore_driver

View File

@ -26,8 +26,8 @@
import abc
from oslo.config import cfg
from oslo import messaging
from oslo_config import cfg
import oslo_messaging as messaging
import six
from octavia.api.v1.handlers import abstract_handler

View File

@ -14,7 +14,7 @@
#
import concurrent.futures
from oslo.config import cfg
from oslo_config import cfg
from taskflow import engines as tf_engines

View File

@ -12,9 +12,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo import messaging
from oslo_config import cfg
from oslo_log import log as logging
import oslo_messaging as messaging
from octavia.controller.queue import endpoint
from octavia.i18n import _LI

View File

@ -12,8 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo import messaging
from oslo_log import log as logging
import oslo_messaging as messaging
from octavia.common import constants
from octavia.controller.worker import controller_worker

View File

@ -13,7 +13,7 @@
# under the License.
#
from oslo.config import cfg
from oslo_config import cfg
from taskflow.patterns import linear_flow
from taskflow import retry

View File

@ -13,7 +13,7 @@
# under the License.
#
from oslo.config import cfg
from oslo_config import cfg
from taskflow.patterns import linear_flow
from octavia.common import constants

View File

@ -15,7 +15,7 @@
import logging
from oslo.config import cfg
from oslo_config import cfg
from stevedore import driver as stevedore_driver
from taskflow import task
from taskflow.types import failure

View File

@ -16,7 +16,7 @@
import logging
import time
from oslo.config import cfg
from oslo_config import cfg
from stevedore import driver as stevedore_driver
from taskflow import task
from taskflow.types import failure

View File

@ -15,7 +15,7 @@
import logging
from oslo.config import cfg
from oslo_config import cfg
from stevedore import driver as stevedore_driver
from taskflow import task
from taskflow.types import failure

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo import i18n
import oslo_i18n as i18n
_translators = i18n.TranslatorFactory(domain='octavia')

View File

@ -15,8 +15,8 @@
import concurrent.futures
import mock
from oslo.config import cfg
from oslo.config import fixture as oslo_fixture
from oslo_config import cfg
from oslo_config import fixture as oslo_fixture
from taskflow import engines as tf_engines
from octavia.common import base_taskflow

View File

@ -13,8 +13,8 @@
# under the License.
import mock
from oslo.config import cfg
from oslo import messaging
from oslo_config import cfg
import oslo_messaging as messaging
from octavia.controller.queue import consumer
from octavia.controller.queue import endpoint