X-Git-Url: https://git.distorted.org.uk/~mdw/hippotat/blobdiff_plain/eb6dcb5af291c1c5457c88979ed4b077a4b28367..b6c0b1bb37610c084ebcb477332ac693ea089bd6:/hippotatd diff --git a/hippotatd b/hippotatd index b08ce66..f3d88d6 100755 --- a/hippotatd +++ b/hippotatd @@ -104,7 +104,8 @@ class Client(): def _req_cancel(self, request): self._log(DBG.HTTP_CTRL, 'cancel', idof=request) - request.finish() + try: request.finish() + except Exception: pass def _req_error(self, err, request): self._log(DBG.HTTP_CTRL, 'error %s' % err, idof=request)