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 71dfcd1 commit 67a2940Copy full SHA for 67a2940
collector/src/compile/execute/bencher.rs
@@ -345,9 +345,9 @@ impl SelfProfileS3Upload {
345
let start = std::time::Instant::now();
346
let status = self.0.wait().expect("waiting for child");
347
if !status.success() {
348
- panic!("S3 upload failed: {:?}", status);
+ log::error!("S3 upload failed: {status:?}");
349
+ } else {
350
+ log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
351
}
-
- log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed());
352
353
0 commit comments