diff --git a/radicle-node/src/wire/protocol.rs b/radicle-node/src/wire/protocol.rs index 41e2251a..15180adc 100644 --- a/radicle-node/src/wire/protocol.rs +++ b/radicle-node/src/wire/protocol.rs @@ -843,6 +843,12 @@ where channels, }; + if !self.worker.is_empty() { + log::warn!( + target: "wire", + "Worker pool is busy: {} tasks pending, fetch requests may be delayed", self.worker.len() + ); + } if self.worker.send(task).is_err() { log::error!(target: "wire", "Worker pool is disconnected; cannot send fetch request"); }