You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2007/08/09 11:03:43 UTC

svn commit: r564154 - /incubator/qpid/trunk/qpid/python/qpid/peer.py

Author: gsim
Date: Thu Aug  9 02:03:42 2007
New Revision: 564154

URL: http://svn.apache.org/viewvc?view=rev&rev=564154
Log:
Fixed syntax error in handling of timeouts.


Modified:
    incubator/qpid/trunk/qpid/python/qpid/peer.py

Modified: incubator/qpid/trunk/qpid/python/qpid/peer.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/qpid/peer.py?view=diff&rev=564154&r1=564153&r2=564154
==============================================================================
--- incubator/qpid/trunk/qpid/python/qpid/peer.py (original)
+++ incubator/qpid/trunk/qpid/python/qpid/peer.py Thu Aug  9 02:03:42 2007
@@ -318,7 +318,7 @@
         if self.closed:
           raise Closed(self.reason)
         if not completed:
-          raise close("Timed-out waiting for completion")
+          self.close("Timed-out waiting for completion")
 
     except QueueClosed, e:
       if self.closed: