From f29c09a96cbcadb199e44822d9c472067291ed00 Mon Sep 17 00:00:00 2001 From: Vijay Mamidi Date: Mon, 15 Mar 2021 19:27:20 -0700 Subject: [PATCH] Fix the connection limit crash while using parents --- proxy/http/HttpSM.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc index 37d1a63ef51..f3d65140467 100644 --- a/proxy/http/HttpSM.cc +++ b/proxy/http/HttpSM.cc @@ -5132,10 +5132,9 @@ HttpSM::do_http_server_open(bool raw) ct_state.blocked(); HTTP_INCREMENT_DYN_STAT(http_origin_connections_throttled_stat); - send_origin_throttled_response(); - ct_state.Warn_Blocked(&t_state.txn_conf->outbound_conntrack, sm_id, ccount - 1, &t_state.current.server->dst_addr.sa, debug_on && is_debug_tag_set("http") ? "http" : nullptr); + send_origin_throttled_response(); return; } else {