relay: bump worker channel capacity

This commit is contained in:
Astro 2023-12-21 02:00:26 +01:00
parent f8708ab22e
commit 3a42090e0c

View file

@ -104,7 +104,7 @@ struct Job {
}
fn spawn_worker(client: Arc<reqwest::Client>) -> Sender<Job> {
let (tx, mut rx) = channel(8);
let (tx, mut rx) = channel(128);
tokio::spawn(async move {
let mut errors = 0u32;