This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/10.1.x by this push:
     new 0a8c571d92 Fix a merge issue with PR #12485 (#12513)
0a8c571d92 is described below

commit 0a8c571d92fb88068e91ba5d85b4a757d523bfd8
Author: Chris McFarlen <[email protected]>
AuthorDate: Mon Sep 15 17:26:10 2025 -0500

    Fix a merge issue with PR #12485 (#12513)
---
 src/proxy/http/HttpSM.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/proxy/http/HttpSM.cc b/src/proxy/http/HttpSM.cc
index 013cbbe099..5d4e5fa49a 100644
--- a/src/proxy/http/HttpSM.cc
+++ b/src/proxy/http/HttpSM.cc
@@ -6290,7 +6290,7 @@ void
 HttpSM::do_setup_client_request_body_tunnel(HttpVC_t to_vc_type)
 {
   if (!_ua.get_txn()->has_request_body(t_state.hdr_info.request_content_length,
-                                       t_state.client_info.transfer_encoding 
== HttpTransact::TransferEncoding_t::CHUNKED)) {
+                                       t_state.client_info.transfer_encoding 
== HttpTransact::CHUNKED_ENCODING)) {
     // No tunnel is needed to transfer 0 bytes or when no request body is 
present.
     // Simply return without setting up a tunnel nor any of the other related 
logic around request bodies.
     return;

Reply via email to