Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
almereyda committed Mar 28, 2023
1 parent 38c4a85 commit f55ef54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ fn main() {
.nth(1)
.unwrap_or_else(|| "127.0.0.1:8080".to_string());

let queue_size = env::args()
let queue_size = env::args()
.nth(2)
.unwrap_or_else(|| "10".to_string())
.parse::<usize>()
.unwrap();

let thread_count = env::args()
let thread_count = env::args()
.nth(3)
.unwrap_or_else(|| "4".to_string())
.parse::<u64>()
Expand Down

0 comments on commit f55ef54

Please sign in to comment.