Merge "Use get_rpc_transport instead of get_transport"

This commit is contained in:
Jenkins 2017-06-08 06:58:51 +00:00 committed by Gerrit Code Review
commit 9a55ac0dd4
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():