Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fix problem with setting SSL protocol in QPid
Browse files Browse the repository at this point in the history
looks like we were setting the wrong param

Fixes LP# 1158807

Change-Id: Id138926f737ce87618d625aa8b289c508a66aaf4
  • Loading branch information
Davanum Srinivas authored and openstack-gerrit committed Mar 24, 2013
1 parent 329b8dd commit 80abdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openstack/common/rpc/impl_qpid.py
Expand Up @@ -320,7 +320,7 @@ def connection_create(self, broker):
# 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):
Expand Down

0 comments on commit 80abdcc

Please sign in to comment.