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 533f2dd + 73e7a7a commit b4ac987Copy full SHA for b4ac987
site/src/load.rs
@@ -455,8 +455,12 @@ fn sort_queue(
455
mr.parent_sha().map_or(true, |parent| done.contains(parent))
456
});
457
458
+ // No commit is ready for benchmarking. This can happen e.g. when a try parent commit
459
+ // was forcefully removed from the master branch of rust-lang/rust. In this case, just
460
+ // let the commits be benchmarked in the current order that we have, these benchmark runs
461
+ // just won't have a parent result available.
462
if level_len == 0 {
- return vec![];
463
+ return unordered_queue;
464
}
465
466
let level = &mut unordered_queue[finished..][..level_len];
0 commit comments