From 50f253d45b9f4010493f91eb1a745816b904d4fb Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Tue, 16 Sep 2025 10:21:42 +0100 Subject: [PATCH] raise limit to 100kb (#739) --- crates/utils/src/stream_ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/utils/src/stream_ext.rs b/crates/utils/src/stream_ext.rs index 37d37bd6..eebef52c 100644 --- a/crates/utils/src/stream_ext.rs +++ b/crates/utils/src/stream_ext.rs @@ -6,7 +6,7 @@ use tokio::time::{Duration, Instant, sleep_until}; use crate::log_msg::LogMsg; const WINDOW_MS: u64 = 10; -const WINDOW_LIMIT: usize = 10 * 1024; // 10 KiB per window +const WINDOW_LIMIT: usize = 100 * 1024; // 100 KiB per window // helper that flushes buf + optional [truncated] marker fn flush_buf(