Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
give more RAM to the bind demo
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 19, 2023
1 parent 359bc82 commit 0245b24
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 @@ -740,7 +740,7 @@ fn test_tcp_bind_async() -> anyhow::Result<()> {
})?;
}

thread::Builder::new().stack_size(4096).spawn(move || {
thread::Builder::new().stack_size(20000).spawn(move || {
async_io::block_on(test_tcp_bind()).unwrap();
})?;

Expand Down

0 comments on commit 0245b24

Please sign in to comment.