Skip to content

Commit 7aef8e9

Browse files
shinrichzwoop
authored andcommitted
Eliminate erroneous self-loop error on transparent mode (#8586)
(cherry picked from commit 4f68338)
1 parent 505866d commit 7aef8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxy/http/HttpSM.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5110,7 +5110,7 @@ HttpSM::do_http_server_open(bool raw)
51105110
}
51115111

51125112
// Check for self loop.
5113-
if (HttpTransact::will_this_request_self_loop(&t_state)) {
5113+
if (!ua_txn->is_outbound_transparent() && HttpTransact::will_this_request_self_loop(&t_state)) {
51145114
call_transact_and_set_next_state(HttpTransact::SelfLoop);
51155115
return;
51165116
}

0 commit comments

Comments
 (0)