Skip to content
Snippets Groups Projects

gitlab-ci: Cope with OBS slowdown

Merged Emanuele Aina requested to merge wip/em/cope-with-slower-obs 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