Enable println warning (#1929)

This commit is contained in:
David Pedersen
2023-04-14 22:26:56 +02:00
committed by GitHub
parent 377d73a55b
commit 39bb28130d
6 changed files with 5 additions and 3 deletions
-1
View File
@@ -30,7 +30,6 @@ async fn main() {
let start_time = Instant::now();
//spawn several clients that will concurrently talk to the server
let mut clients = (0..N_CLIENTS)
.into_iter()
.map(|cli| tokio::spawn(spawn_client(cli)))
.collect::<FuturesUnordered<_>>();