get rid of a couple of old oslo-incubator object references

Found these while looking around the rpc message code; these paths are
no longer valid. Didn't want to combine this change with the one to
add signing/verification as it appears to be more of a cleanup thing.

TRANSPORT_ALIASES is no longer used so I've got rid of that as well.

Change-Id: I398f1286bcb08740a6125d4e773c9de6708e1d43
This commit is contained in:
Amrith Kumar 2016-11-07 16:35:09 -05:00
parent 1b2f42dc3d
commit 83c82beb86

View File

@ -27,7 +27,6 @@ __all__ = [
'get_client',
'get_server',
'get_notifier',
'TRANSPORT_ALIASES',
]
@ -50,23 +49,12 @@ ALLOWED_EXMODS = [
EXTRA_EXMODS = []
# TODO(esp): Remove or update these paths
TRANSPORT_ALIASES = {
'trove.openstack.common.rpc.impl_kombu': 'rabbit',
'trove.openstack.common.rpc.impl_qpid': 'qpid',
'trove.openstack.common.rpc.impl_zmq': 'zmq',
'trove.rpc.impl_kombu': 'rabbit',
'trove.rpc.impl_qpid': 'qpid',
'trove.rpc.impl_zmq': 'zmq',
}
def init(conf):
global TRANSPORT, NOTIFIER
exmods = get_allowed_exmods()
TRANSPORT = messaging.get_transport(conf,
allowed_remote_exmods=exmods,
aliases=TRANSPORT_ALIASES)
allowed_remote_exmods=exmods)
serializer = RequestContextSerializer(JsonPayloadSerializer())
NOTIFIER = messaging.Notifier(TRANSPORT, serializer=serializer)
@ -137,7 +125,7 @@ class RequestContextSerializer(messaging.Serializer):
def get_transport_url(url_str=None):
return messaging.TransportURL.parse(CONF, url_str, TRANSPORT_ALIASES)
return messaging.TransportURL.parse(CONF, url_str)
def get_client(target, version_cap=None, serializer=None):