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.
2 parents 84a737f + e33734c commit 073221bCopy full SHA for 073221b
collector/src/compile/execute/bencher.rs
@@ -338,9 +338,9 @@ impl SelfProfileS3Upload {
338
let start = std::time::Instant::now();
339
let status = self.0.wait().expect("waiting for child");
340
if !status.success() {
341
- log::error!("S3 upload failed: {status:?}");
342
- } else {
343
- log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
+ panic!("S3 upload failed: {:?}", status);
344
}
+
+ log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
345
346
0 commit comments