Merge "Fix the depreciate warning of get_transport"

This commit is contained in:
Jenkins 2017-10-10 20:41:23 +00:00 committed by Gerrit Code Review
commit b5868e8be7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def get_transport():
global _TRANSPORT
if not _TRANSPORT:
_TRANSPORT = messaging.get_transport(cfg.CONF)
_TRANSPORT = messaging.get_rpc_transport(cfg.CONF)
return _TRANSPORT