Skip to content

Commit

Permalink
fix: Don't sort/deduplicate in list_files
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim committed Jul 18, 2023
1 parent 97fe511 commit 2121264
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions crates/symbolicator-service/src/services/download/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,10 +407,6 @@ impl DownloadService {
}
}
remote_files
.sort_by_cached_key(|remote_file| (remote_file.source_id().clone(), remote_file.uri()));
remote_files
.dedup_by_key(|remote_file| (remote_file.source_id().clone(), remote_file.uri()));
remote_files
}

/// Look up a list of bundles or individual artifact files covering the
Expand Down

0 comments on commit 2121264

Please sign in to comment.