File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ async fn create_benchmark_request_master_commits(
38
38
39
39
/// Sorts try and master requests that are in the `ArtifactsReady` status.
40
40
/// Doesn't consider in-progress requests or release artifacts.
41
- fn sort_benchmark_requests < ' a > ( done : & HashSet < String > , request_queue : & ' a mut [ BenchmarkRequest ] ) {
41
+ fn sort_benchmark_requests ( done : & HashSet < String > , request_queue : & mut [ BenchmarkRequest ] ) {
42
42
// A topological sort, where each "level" is additionally altered such that
43
43
// try commits come first, and then sorted by PR # (as a rough heuristic for
44
44
// earlier requests).
@@ -150,7 +150,7 @@ pub async fn build_queue(
150
150
151
151
release_artifacts. sort_unstable_by ( |a, b| {
152
152
a. tag ( )
153
- . cmp ( & b. tag ( ) )
153
+ . cmp ( b. tag ( ) )
154
154
. then_with ( || a. created_at . cmp ( & b. created_at ) )
155
155
} ) ;
156
156
You can’t perform that action at this time.
0 commit comments