Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
almereyda committed Mar 28, 2023
1 parent 8d53c2f commit 38c4a85
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 @@ -11,13 +11,13 @@ fn main() {
.nth(2)
.unwrap_or_else(|| "10".to_string())
.parse::<usize>()
.unwrap();;
.unwrap();

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

server::start_server(&listen_at, queue_size, thread_count);
}

0 comments on commit 38c4a85

Please sign in to comment.