From a9872b9582db66e4081ba5b983e55165d42f175f Mon Sep 17 00:00:00 2001 From: John Rushford Date: Thu, 30 Sep 2021 17:37:32 +0000 Subject: [PATCH] Fixes issue #8366, assertion failure in HttpTransact.cc::is_response_valid() --- proxy/http/HttpTransact.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc index a7866cc79d9..32671a6fada 100644 --- a/proxy/http/HttpTransact.cc +++ b/proxy/http/HttpTransact.cc @@ -331,7 +331,7 @@ HttpTransact::is_response_valid(State *s, HTTPHdr *incoming_response) ink_assert((s->current.state == CONNECTION_ERROR) || (s->current.state == OPEN_RAW_ERROR) || (s->current.state == PARSE_ERROR) || (s->current.state == CONNECTION_CLOSED) || (s->current.state == INACTIVE_TIMEOUT) || (s->current.state == ACTIVE_TIMEOUT) || - s->current.state == OUTBOUND_CONGESTION); + (s->current.state == BAD_INCOMING_RESPONSE) || s->current.state == OUTBOUND_CONGESTION); s->hdr_info.response_error = CONNECTION_OPEN_FAILED; return false;