From e9c242734b240a3f15cb93fb202ee53cba7c48a4 Mon Sep 17 00:00:00 2001 From: Tessa Pierce Ward Date: Thu, 9 May 2024 20:34:53 -0700 Subject: [PATCH] upd comment --- src/directsketch.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/directsketch.rs b/src/directsketch.rs index d46173c..03db50f 100644 --- a/src/directsketch.rs +++ b/src/directsketch.rs @@ -625,8 +625,7 @@ pub async fn download_and_sketch( create_dir_all(&download_path)?; } - // // create channels. buffer size can be changed - here it is 4 b/c we can do 3 downloads simultaneously - // // to do: see whether changing buffer size speeds things up + // create channels. buffer size here is 4 b/c we can do 3 downloads simultaneously let (send_sigs, recv_sigs) = tokio::sync::mpsc::channel::>(4); let (send_failed, recv_failed) = tokio::sync::mpsc::channel::(4); // // Error channel for handling task errors