Skip to content

Commit

Permalink
Increase downstream->upstream buffer (#969)
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky authored May 29, 2024
1 parent 037756a commit 5c3e931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/proxy/sessions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl SessionPool {
.ok_or_else(|| eyre::eyre!("couldn't get socket address from raw socket"))
.map_err(super::PipelineError::Session)?
.port();
let (tx, mut downstream_receiver) = mpsc::channel::<UpstreamChannelData>(5);
let (tx, mut downstream_receiver) = mpsc::channel::<UpstreamChannelData>(15);

let pool = self.clone();

Expand Down

0 comments on commit 5c3e931

Please sign in to comment.