diff --git a/streamer/src/quic.rs b/streamer/src/quic.rs index 2647ddbe28fa29..3e8e43e4483409 100644 --- a/streamer/src/quic.rs +++ b/streamer/src/quic.rs @@ -47,7 +47,7 @@ pub struct SpawnServerResult { } /// Controls the the channel size for the PacketBatch coalesce -pub(crate) const MAX_COALESCE_CHANNEL_SIZE: usize = 1_000_000; +pub(crate) const MAX_COALESCE_CHANNEL_SIZE: usize = 10_000_000; /// Returns default server configuration along with its PEM certificate chain. #[allow(clippy::field_reassign_with_default)] // https://github.com/rust-lang/rust-clippy/issues/6527