c7d880c33a
Be specific regarding which characters can be used in the 'username' and 'password' fields of the URL. Change-Id: I9a2a801b3dd86fceffb05f4d52c715748c88d0cb Closes-Bug: #1693967
48 lines
1.9 KiB
Python
48 lines
1.9 KiB
Python
# Copyright 2017 OpenStack Foundation.
|
|
# All Rights Reserved.
|
|
# Copyright 2017 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
__all__ = [
|
|
'get_rpc_transport'
|
|
]
|
|
|
|
from oslo_messaging import transport as msg_transport
|
|
|
|
|
|
def get_rpc_transport(conf, url=None,
|
|
allowed_remote_exmods=None):
|
|
"""A factory method for Transport objects for RPCs.
|
|
|
|
This method should be used to ensure the correct messaging functionality
|
|
for RPCs. RPCs and Notifications may use separate messaging systems
|
|
that utilize different drivers, different access permissions,
|
|
message delivery, etc.
|
|
|
|
Presently, this function works exactly the same as get_transport. It's
|
|
use is recommended as disambiguates the intended use for the transport
|
|
and may in the future extend functionality related to the separation of
|
|
messaging backends.
|
|
|
|
:param conf: the user configuration
|
|
:type conf: cfg.ConfigOpts
|
|
:param url: a transport URL, see :py:class:`transport.TransportURL`
|
|
:type url: str or TransportURL
|
|
:param allowed_remote_exmods: a list of modules which a client using this
|
|
transport will deserialize remote exceptions
|
|
from
|
|
:type allowed_remote_exmods: list
|
|
"""
|
|
return msg_transport._get_transport(conf, url,
|
|
allowed_remote_exmods)
|