Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion proxy/http/HttpSM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 0 additions & 2 deletions proxy/http/HttpTransact.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down
1 change: 0 additions & 1 deletion proxy/http/HttpTransact.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ class HttpTransact
enum AbortState_t {
ABORT_UNDEFINED = 0,
DIDNOT_ABORT,
MAYBE_ABORTED,
ABORTED,
};

Expand Down