Pavel Moravec created QPID-5852:
-----------------------------------
Summary: [Python client] connection.opened() returns True after
unsuccessful connection
Key: QPID-5852
URL: https://issues.apache.org/jira/browse/QPID-5852
Project: Qpid
Issue Type: Bug
Components: Python Client
Affects Versions: 0.28
Reporter: Pavel Moravec
Assignee: Pavel Moravec
Priority: Trivial
Description of problem:
When python connection fails to connect to a broker, connection status is
opened == True. After unsuccessfull connection, the state of Connection object
should be False.
How reproducible:
100%
Steps to Reproduce:
1. create a connection to nonexisting broker in python
2. check return value od connection.opened()
(or see below reproducer)
Actual results:
True
Expected results:
False
Reproducer script:
from qpid.messaging import *
parms = {}
try:
connection = Connection("invalid-hostname", **parms)
connection.open()
except ConnectionError,e:
print e
print "connection.opened=%s" %(connection.opened())
--
This message was sent by Atlassian JIRA
(v6.2#6252)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]