This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 732006e23b http2: Set proxy session active on create_stream (#11210)
732006e23b is described below
commit 732006e23bd150dfabd950809c48a4891ccf3173
Author: Masaori Koshiba <[email protected]>
AuthorDate: Fri Apr 5 15:49:27 2024 +0900
http2: Set proxy session active on create_stream (#11210)
---
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 1a0306ef5c..053599f10d 100644
--- a/src/proxy/http2/Http2ConnectionState.cc
+++ b/src/proxy/http2/Http2ConnectionState.cc
@@ -1786,6 +1786,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;
}