mirror of
https://github.com/astro/buzzrelay.git
synced 2024-11-21 19:51:00 +00:00
relay: bump worker channel capacity
This commit is contained in:
parent
f8708ab22e
commit
3a42090e0c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue