You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2014/06/26 19:01:29 UTC

[jira] [Commented] (QPID-5852) [Python client] connection.opened() returns True after unsuccessful connection

    [ https://issues.apache.org/jira/browse/QPID-5852?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14044858#comment-14044858 ] 

ASF subversion and git services commented on QPID-5852:
-------------------------------------------------------

Commit 1605855 from [~pmoravec] in branch 'qpid/trunk'
[ https://svn.apache.org/r1605855 ]

[QPID-5852]: [Python client] connection.opened() returns True after unsuccessful connection

> [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
>             Fix For: 0.29
>
>
> 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: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org