Yi Tang created QPID-6251:
-----------------------------

             Summary: socket.error raised in writeable is not transformed to 
'ConnectionError' which will cause catch omitted  in upper layer
                 Key: QPID-6251
                 URL: https://issues.apache.org/jira/browse/QPID-6251
             Project: Qpid
          Issue Type: Bug
          Components: Python Client
    Affects Versions: 0.30, 0.28, 0.26
            Reporter: Yi Tang


when calling {{writeable}}, the exception 'socket.error' is not transformed to 
{{ConnectionError}} which will cause catch omitted in upper layer

the follow patch should fix it:
{code:python}
Index: qpid/messaging/driver.py
===================================================================
--- qpid/messaging/driver.py    (revision 1642638)
+++ qpid/messaging/driver.py    (working copy)
@@ -474,7 +474,7 @@
       sent = self.engine.read(n)
       rawlog.debug("SENT[%s]: %r", self.log_id, sent)
     except socket.error, e:
-      self.close_engine(e)
+      self.close_engine(ConnectionError(text=str(e)))
       notify = True
 
     if self.update_status() or notify:
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to