From 349c21af2c04494e374aeeea2b8bc1feafea12ff Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Tue, 15 Apr 2025 12:36:47 +0200 Subject: [PATCH] http2: mark old txs as updated As is done in the other case a few lines below --- rust/src/http2/http2.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/src/http2/http2.rs b/rust/src/http2/http2.rs index 7f178d18bd..5a711e7c7c 100644 --- a/rust/src/http2/http2.rs +++ b/rust/src/http2/http2.rs @@ -742,6 +742,8 @@ impl HTTP2State { tx_old.set_event(HTTP2Event::TooManyStreams); // use a distinct state, even if we do not log it tx_old.state = HTTP2TransactionState::HTTP2StateTodrop; + tx_old.tx_data.updated_tc = true; + tx_old.tx_data.updated_ts = true; } return None; }