We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f5ad4 commit 70c1903Copy full SHA for 70c1903
collector/src/bin/collector.rs
@@ -1722,9 +1722,10 @@ async fn run_benchmark_job(
1722
Ok(sysroot) => sysroot,
1723
Err(SysrootDownloadError::SysrootShaNotFound) => {
1724
return Err(BenchmarkJobError::Permanent(anyhow::anyhow!(
1725
- "Artifacts for SHA {} and target {} were not found on CI servers",
+ "Artifacts for SHA `{}`, target `{}` and backend `{}` were not found on CI servers",
1726
commit.sha,
1727
- job.target().as_str()
+ job.target().as_str(),
1728
+ job.backend().as_str()
1729
)))
1730
}
1731
Err(SysrootDownloadError::IO(error)) => return Err(error.into()),
0 commit comments