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

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

commit 4592451c6b6ccc3a913962f0ce8070f2275cda3b
Author: Masaori Koshiba <[email protected]>
AuthorDate: Fri Apr 5 15:49:27 2024 +0900

    http2: Set proxy session active on create_stream (#11210)
    
    (cherry picked from commit 732006e23bd150dfabd950809c48a4891ccf3173)
---
 src/proxy/http2/Http2ConnectionState.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/proxy/http2/Http2ConnectionState.cc 
b/src/proxy/http2/Http2ConnectionState.cc
index f5bc102c16..ca50283611 100644
--- a/src/proxy/http2/Http2ConnectionState.cc
+++ b/src/proxy/http2/Http2ConnectionState.cc
@@ -1792,6 +1792,7 @@ Http2ConnectionState::create_stream(Http2StreamId new_id, 
Http2Error &error)
 
   // Clear the session timeout.  Let the transaction timeouts reign
   session->get_proxy_session()->cancel_inactivity_timeout();
+  session->get_proxy_session()->set_session_active();
 
   return new_stream;
 }

Reply via email to