Use get_rpc_transport instead of get_transport

With the added get_rpc_transport() function in oslo.messaging [1]
and the recent version bump of oslo.messaging to 5.24.2, we can
safely replace get_transport() with get_rpc_transport() which is much
cleaner.

[1] https://review.openstack.org/#/c/454194/

Change-Id: Ib7e204a40e88aecfbd9b024feefdc7aa45e943e2
This commit is contained in:
deepakmourya 2017-06-07 14:17:39 +05:30
parent 014cc17be5
commit 6b89fab7d7
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def init(conf, is_server_side=True):
global TRANSPORT, IS_SERVER_SIDE
exmods = get_allowed_exmods()
IS_SERVER_SIDE = is_server_side
TRANSPORT = messaging.get_transport(conf, allowed_remote_exmods=exmods)
TRANSPORT = messaging.get_rpc_transport(conf, allowed_remote_exmods=exmods)
def is_server_side():