From a7b7c867385fd5422a8afa4c05e832907be7bc36 Mon Sep 17 00:00:00 2001 From: Kevin_Zheng Date: Mon, 4 Jan 2016 19:16:45 +0800 Subject: [PATCH] Use oslo_messaging instead of oslo.messaging Import oslo_messaging instead of from oslo import messaging to make api launch correctly. Change-Id: Icfab7187c23f75341878946c45aa2860d8f6d4d4 --- terracotta/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terracotta/rpc.py b/terracotta/rpc.py index 29754a1..a698d9e 100644 --- a/terracotta/rpc.py +++ b/terracotta/rpc.py @@ -12,9 +12,9 @@ # See the 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 oslo_messaging.rpc import client from terracotta import exceptions as exc