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 5771499 commit ce323afCopy full SHA for ce323af
site/src/job_queue/mod.rs
@@ -156,7 +156,7 @@ pub async fn build_queue(
156
});
157
158
// We sort the in-progress ones based on the started date
159
- queue.sort_unstable_by(|a, b| a.created_at().cmp(&b.created_at()));
+ queue.sort_unstable_by_key(|req| req.created_at());
160
161
// Add release artifacts ordered by the release tag (1.87.0 before 1.88.0) and `created_at`.
162
let mut release_artifacts: Vec<BenchmarkRequest> =
0 commit comments