From: Ian Jackson Date: Tue, 22 Aug 2017 16:24:48 +0000 (+0100) Subject: do not crash on unexpected connectionLost X-Git-Url: https://git.distorted.org.uk/~mdw/hippotat/commitdiff_plain/d5008b7cbaee6052bc6c19b3df6283b9881e7b0a do not crash on unexpected connectionLost Signed-off-by: Ian Jackson --- diff --git a/hippotat b/hippotat index 1625628..b8477bb 100755 --- 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')