summaryrefslogtreecommitdiff
path: root/ironic/common/rpc.py
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-04-28 19:27:02 +0000
committerDoug Hellmann <doug@doughellmann.com>2015-05-06 20:25:22 +0000
commit1d51b98998a8ee06867347a23fba048b9f58bf6e (patch)
tree018037517a84636f021852fc3be57c87da00d3df /ironic/common/rpc.py
parent5df3bd1dac02bbdfc488b5a6d6f2bb622ba0ae14 (diff)
downloadironic-1d51b98998a8ee06867347a23fba048b9f58bf6e.tar.gz
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: I695d2141c00a5ee36e042efbb9bac4e2803c1948
Diffstat (limited to 'ironic/common/rpc.py')
-rw-r--r--ironic/common/rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/common/rpc.py b/ironic/common/rpc.py
index 99bb05535..19b929b08 100644
--- a/ironic/common/rpc.py
+++ b/ironic/common/rpc.py
@@ -27,8 +27,8 @@ __all__ = [
'TRANSPORT_ALIASES',
]
-from oslo import messaging
from oslo_config import cfg
+import oslo_messaging as messaging
from oslo_serialization import jsonutils
from ironic.common import context as ironic_context