Skip to content
Snippets Groups Projects

Fixes for snapshots that are missing files

Closed Ryan Gonzalez requested to merge wip/refi64/handle-bad-snapshots into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -54,7 +54,7 @@ impl Client {
// NOTE: the URL should be printed since get() is instrumented.
debug!("GET");
Ok(self.client.get(url.clone()).send().await?.bytes().await?)
Ok(self.client.get(url.clone()).send().await?.error_for_status()?.bytes().await?)
}
#[instrument(skip(self))]
Loading