diff --git a/uplink/src/collector/downloader.rs b/uplink/src/collector/downloader.rs index a3a1442cf..c9fba6790 100644 --- a/uplink/src/collector/downloader.rs +++ b/uplink/src/collector/downloader.rs @@ -185,7 +185,13 @@ impl FileDownloader { loop { match self.download(req, &mut download).await { Ok(_) => break, - Err(Error::Reqwest(e)) if !e.is_status() => error!("Download failed: {e}"), + Err(Error::Reqwest(e)) if !e.is_status() => { + let status = ActionResponse::progress(&self.action_id, "Download Failed", 0) + .set_sequence(self.sequence()) + .add_error(e.to_string()); + self.bridge_tx.send_action_response(status).await; + error!("Download failed: {e}"); + } Err(e) => return Err(e), } tokio::time::sleep(Duration::from_secs(1)).await;