chiark / gitweb /
do not crash on unexpected connectionLost
[hippotat.git] / hippotat
index 16256281f505aa9a4e5c4bef07559ce39f65c04f..b8477bb24bf33d745649a0082d363bff167c574c 100755 (executable)
--- a/hippotat
+++ b/hippotat
@@ -56,9 +56,10 @@ class ResponseConsumer(GeneralResponseConsumer):
       self._handleexception()
 
   def connectionLost(self, reason):
-    self._log(DBG.HTTP_CTRL, 'connectionLost ' + str(reason))
+    reason_msg = 'connectionLost ' + str(reason)
+    self._log(DBG.HTTP_CTRL, reason_msg)
     if not reason.check(twisted.web.client.ResponseDone):
-      self.latefailure()
+      self._latefailure(reason_msg)
       return
     try:
       self._log(DBG.HTTP, 'ResponseDone')