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 1c64fa0 + 67a2940 commit ee0b821Copy full SHA for ee0b821
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
- panic!("S3 upload failed: {:?}", status);
+ log::error!("S3 upload failed: {status:?}");
342
+ } else {
343
+ log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
344
}
-
- log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
345
346
0 commit comments