Skip to content

Commit

Permalink
sort_unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Lanham committed Sep 19, 2024
1 parent 4b19ed3 commit 1e03452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/src/engine/default/filesystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl<E: TaskExecutor> FileSystemClient for ObjectStoreFileSystemClient<E> {
if self.is_local {
// LocalFileSystem doesn't return things in the order we require
let mut fms: Vec<FileMeta> = receiver.into_iter().try_collect()?;
fms.sort();
fms.sort_unstable();
Ok(Box::new(fms.into_iter().map(Ok)))
} else {
Ok(Box::new(receiver.into_iter()))
Expand Down

0 comments on commit 1e03452

Please sign in to comment.