Skip to content

Commit

Permalink
bump up mpsc channel capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
hizkifw committed Nov 5, 2022
1 parent 6ebb7ba commit 23435f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async fn main() -> Result<()> {
);

// Set up message bus
let mut bus = MessageBus::new(16384);
let mut bus = MessageBus::new(65_536);

// Set up modules
macro_rules! run_module {
Expand Down

0 comments on commit 23435f3

Please sign in to comment.