Skip to content

Commit

Permalink
set MAX_COALESCE_CHANNEL_SIZE to 10_000_000
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Jan 16, 2025
1 parent d886e1c commit 9c0922b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamer/src/quic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c0922b

Please sign in to comment.