summaryrefslogtreecommitdiffstats
path: root/openstack/common/rpc
diff options
context:
space:
mode:
authorDavanum Srinivas <dims@linux.vnet.ibm.com>2013-03-22 12:56:37 -0400
committerGerrit Code Review <review@openstack.org>2013-03-24 16:22:44 +0000
commit80abdcc48af5a6c67690cafcd41e5682bb1fef15 (patch)
tree081e332c6ed0791a29cd264d099963df39c6acec /openstack/common/rpc
parent329b8dd639e4f65369547f96f0ad841bb2fdf113 (diff)
downloadoslo-80abdcc48af5a6c67690cafcd41e5682bb1fef15.tar.gz
oslo-80abdcc48af5a6c67690cafcd41e5682bb1fef15.tar.xz
oslo-80abdcc48af5a6c67690cafcd41e5682bb1fef15.zip
Fix problem with setting SSL protocol in QPid
looks like we were setting the wrong param Fixes LP# 1158807 Change-Id: Id138926f737ce87618d625aa8b289c508a66aaf4
Diffstat (limited to 'openstack/common/rpc')
-rw-r--r--openstack/common/rpc/impl_qpid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/impl_qpid.py b/openstack/common/rpc/impl_qpid.py
index 46d0ac1..c908751 100644
--- a/openstack/common/rpc/impl_qpid.py
+++ b/openstack/common/rpc/impl_qpid.py
@@ -320,7 +320,7 @@ class Connection(object):
# Reconnection is done by self.reconnect()
self.connection.reconnect = False
self.connection.heartbeat = self.conf.qpid_heartbeat
- self.connection.protocol = self.conf.qpid_protocol
+ self.connection.transport = self.conf.qpid_protocol
self.connection.tcp_nodelay = self.conf.qpid_tcp_nodelay
def _register_consumer(self, consumer):