This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/8.0.x by this push:
new c677d67 Fixed coredump with origin throttling
c677d67 is described below
commit c677d67e32c0641003027b42a713d8da62393ab3
Author: Bryan Call <[email protected]>
AuthorDate: Wed Jun 13 16:23:42 2018 -0700
Fixed coredump with origin throttling
This was broke by: 4e6237562 Remove Congestion Control Feature
(cherry picked from commit ff85139ee99d3831fd6772c6925d806401373543)
---
proxy/http/HttpSM.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc
index 5fc5cd8..f7b4ecf 100644
--- a/proxy/http/HttpSM.cc
+++ b/proxy/http/HttpSM.cc
@@ -4634,7 +4634,7 @@ void
HttpSM::send_origin_throttled_response()
{
t_state.current.attempts = t_state.txn_conf->connect_attempts_max_retries;
- // t_state.current.state = HttpTransact::CONNECTION_ERROR;
+ t_state.current.state = HttpTransact::CONNECTION_ERROR;
call_transact_and_set_next_state(HttpTransact::HandleResponse);
}
--
To stop receiving notification emails like this one, please contact
[email protected].