File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub struct SpawnServerResult {
47
47
}
48
48
49
49
/// Controls the the channel size for the PacketBatch coalesce
50
- pub ( crate ) const MAX_COALESCE_CHANNEL_SIZE : usize = 10_000_000 ;
50
+ pub ( crate ) const DEFAULT_MAX_COALESCE_CHANNEL_SIZE : usize = 10_000_000 ;
51
51
52
52
/// Returns default server configuration along with its PEM certificate chain.
53
53
#[ allow( clippy:: field_reassign_with_default) ] // https://github.com/rust-lang/rust-clippy/issues/6527
@@ -589,7 +589,7 @@ impl Default for QuicServerParams {
589
589
max_connections_per_ipaddr_per_min : DEFAULT_MAX_CONNECTIONS_PER_IPADDR_PER_MINUTE ,
590
590
wait_for_chunk_timeout : DEFAULT_WAIT_FOR_CHUNK_TIMEOUT ,
591
591
coalesce : DEFAULT_TPU_COALESCE ,
592
- coalesce_channel_size : MAX_COALESCE_CHANNEL_SIZE ,
592
+ coalesce_channel_size : DEFAULT_MAX_COALESCE_CHANNEL_SIZE ,
593
593
}
594
594
}
595
595
}
You can’t perform that action at this time.
0 commit comments