Fix problem with setting SSL protocol in QPid

looks like we were setting the wrong param

This is patch Id138926f in Grizzly oslo-incubator and it was already
included as part of Id72417d5 for Havana.

Closes-Bug: 1158807
Change-Id: Ie751e5670f612d52eea11db72bab4620de243e89
This commit is contained in:
Xavier Queralt 2013-11-18 18:02:25 +01:00
parent cc10525820
commit 37389b3546
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ class Connection(object):
# Reconnection is done by self.reconnect() # Reconnection is done by self.reconnect()
self.connection.reconnect = False self.connection.reconnect = False
self.connection.heartbeat = self.conf.qpid_heartbeat 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 self.connection.tcp_nodelay = self.conf.qpid_tcp_nodelay
def _register_consumer(self, consumer): def _register_consumer(self, consumer):