Browse code

Merge "Fix oslo_messaging package and related object names"

Jenkins authored on 2015/02/03 00:38:21
Showing 1 changed files
... ...
@@ -243,7 +243,7 @@ function iniset_rpc_backend {
243 243
     if is_service_enabled zeromq; then
244 244
         iniset $file $section rpc_backend "zmq"
245 245
         iniset $file $section rpc_zmq_matchmaker \
246
-            oslo.messaging._drivers.matchmaker_redis.MatchMakerRedis
246
+            oslo_messaging._drivers.matchmaker_redis.MatchMakerRedis
247 247
         # Set MATCHMAKER_REDIS_HOST if running multi-node.
248 248
         MATCHMAKER_REDIS_HOST=${MATCHMAKER_REDIS_HOST:-127.0.0.1}
249 249
         iniset $file matchmaker_redis host $MATCHMAKER_REDIS_HOST
... ...
@@ -252,7 +252,7 @@ function iniset_rpc_backend {
252 252
         if [ "$RPC_MESSAGING_PROTOCOL" == "AMQP1" ]; then
253 253
             iniset $file $section rpc_backend "amqp"
254 254
         else
255
-            iniset $file $section rpc_backend ${package}.openstack.common.rpc.impl_qpid
255
+            iniset $file $section rpc_backend "qpid"
256 256
         fi
257 257
         iniset $file $section qpid_hostname ${QPID_HOST:-$SERVICE_HOST}
258 258
         if [ -n "$QPID_USERNAME" ]; then
... ...
@@ -260,7 +260,7 @@ function iniset_rpc_backend {
260 260
             iniset $file $section qpid_password $QPID_PASSWORD
261 261
         fi
262 262
     elif is_service_enabled rabbit || { [ -n "$RABBIT_HOST" ] && [ -n "$RABBIT_PASSWORD" ]; }; then
263
-        iniset $file $section rpc_backend ${package}.openstack.common.rpc.impl_kombu
263
+        iniset $file $section rpc_backend "rabbit"
264 264
         iniset $file $section rabbit_hosts $RABBIT_HOST
265 265
         iniset $file $section rabbit_password $RABBIT_PASSWORD
266 266
         iniset $file $section rabbit_userid $RABBIT_USERID