From 854cf804c18f03b39eccd6811aa7ebfe61f32432 Mon Sep 17 00:00:00 2001 From: yuanchao Date: Fri, 5 Jun 2026 10:09:20 +0800 Subject: [PATCH] fix: out_of_order_reassembly_timeout not taking effect --- agent/src/config/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/src/config/config.rs b/agent/src/config/config.rs index 9a1b1c25aaa..b711a60d429 100644 --- a/agent/src/config/config.rs +++ b/agent/src/config/config.rs @@ -1435,6 +1435,7 @@ pub struct EbpfNetwork { pub struct EbpfSocketPreprocess { pub out_of_order_reassembly_cache_size: usize, pub out_of_order_reassembly_protocols: Vec, + #[serde(with = "humantime_serde")] pub out_of_order_reassembly_timeout: Duration, pub segmentation_reassembly_protocols: Vec, }