Skip to content

Commit

Permalink
change pool size to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lijun Wang committed Sep 29, 2023
1 parent 6ea5128 commit 76d5b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connection-cache/src/connection_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use {
const MAX_CONNECTIONS: usize = 1024;

/// Default connection pool size per remote address
pub const DEFAULT_CONNECTION_POOL_SIZE: usize = 4;
pub const DEFAULT_CONNECTION_POOL_SIZE: usize = 2;

#[derive(Clone, Copy, Eq, Hash, PartialEq)]
pub enum Protocol {
Expand Down

0 comments on commit 76d5b32

Please sign in to comment.