diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc index 6991b95c8ef..8e5f46dfca4 100644 --- a/proxy/http/HttpSM.cc +++ b/proxy/http/HttpSM.cc @@ -5374,7 +5374,6 @@ HttpSM::set_ua_abort(HttpTransact::AbortState_t ua_abort, int event) switch (ua_abort) { case HttpTransact::ABORTED: - case HttpTransact::MAYBE_ABORTED: // More detailed client side abort logging based on event switch (event) { case VC_EVENT_ERROR: diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc index ebec4d33c82..85ea71ba2c1 100644 --- a/proxy/http/HttpTransact.cc +++ b/proxy/http/HttpTransact.cc @@ -8340,8 +8340,6 @@ HttpTransact::client_result_stat(State *s, ink_hrtime total_time, ink_hrtime req ////////////////////////////////////////// if (s->client_info.abort == ABORTED) { client_transaction_result = CLIENT_TRANSACTION_RESULT_ERROR_ABORT; - } else if (s->client_info.abort == MAYBE_ABORTED) { - client_transaction_result = CLIENT_TRANSACTION_RESULT_ERROR_POSSIBLE_ABORT; } // Count the status codes, assuming the client didn't abort (i.e. there is an m_http) if ((s->source != SOURCE_NONE) && (s->client_info.abort == DIDNOT_ABORT)) { diff --git a/proxy/http/HttpTransact.h b/proxy/http/HttpTransact.h index 5bce8fb92a4..f65d5d23aef 100644 --- a/proxy/http/HttpTransact.h +++ b/proxy/http/HttpTransact.h @@ -219,7 +219,6 @@ class HttpTransact enum AbortState_t { ABORT_UNDEFINED = 0, DIDNOT_ABORT, - MAYBE_ABORTED, ABORTED, };