From c7a578d8cc34a4619d0740c8e11d95ce080642b2 Mon Sep 17 00:00:00 2001 From: Nulo Date: Fri, 12 Jan 2024 18:00:14 -0300 Subject: [PATCH] no boxear --- scraper-rs/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/scraper-rs/src/main.rs b/scraper-rs/src/main.rs index 411be05..a2659ff 100644 --- a/scraper-rs/src/main.rs +++ b/scraper-rs/src/main.rs @@ -88,8 +88,6 @@ async fn fetch_list(pool: &Pool, links: Vec) -> Counters { let client = client.clone(); tokio::spawn(fetch_and_save(client, url, pool)) }) - // https://github.com/rust-lang/rust/issues/89976#issuecomment-1073115246 - .boxed() .buffer_unordered(n_coroutines) .fold(Counters::default(), move |x, y| { let ret = y.unwrap();