Skip to content

Commit

Permalink
fix: increase channel size
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef committed Jul 13, 2021
1 parent 570e849 commit fa581ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const PORT_FORWARD_TIMEOUT: u64 = 30;
const ECHO_SERVICE_QUERY_TIMEOUT: u64 = 30;

/// Standard size of our channel bounds
const STANDARD_CHANNEL_SIZE: usize = 5;
const STANDARD_CHANNEL_SIZE: usize = 1000;

/// Channel on which incoming messages can be listened to
pub struct IncomingMessages(pub(crate) MpscReceiver<(SocketAddr, Bytes)>);
Expand Down

0 comments on commit fa581ae

Please sign in to comment.