From 4224dc197474ed0a2535cdb100193fffaa697d0e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 22 Aug 2017 17:31:08 +0100 Subject: [PATCH] ResponseConsumer: pass resp to constructor (nfc) Signed-off-by: Ian Jackson --- hippotat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hippotat b/hippotat index b8477bb..997996d 100755 --- a/hippotat +++ b/hippotat @@ -42,7 +42,7 @@ class GeneralResponseConsumer(twisted.internet.protocol.Protocol): self._log(DBG.HTTP_CTRL, 'connectionMade') class ResponseConsumer(GeneralResponseConsumer): - def __init__(self, cl, req): + def __init__(self, cl, req, resp): super().__init__(cl, req, 'RC') ssddesc = '[%s] %s' % (id(req), self._desc) self._ssd = SlipStreamDecoder(ssddesc, partial(queue_inbound, cl.ipif)) @@ -139,7 +139,7 @@ class Client(): 'req_ok %d %s %s' % (resp.code, repr(resp.phrase), str(resp)), idof=req) if resp.code == 200: - rc = ResponseConsumer(cl, req) + rc = ResponseConsumer(cl, req, resp) else: rc = ErrorResponseConsumer(cl, req, resp) -- 2.11.0