Skip to content

Commit f076121

Browse files
committed
use flat_map
1 parent b021f1f commit f076121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceberg-rust/src/table/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ async fn datafiles(
344344
})
345345
.collect();
346346

347-
Ok(stream.flat_map_unordered(None, move |result| {
347+
Ok(stream.flat_map(move |result| {
348348
let (bytes, path, sequence_number) = result.unwrap();
349349

350350
let reader = ManifestReader::new(bytes).unwrap();

0 commit comments

Comments
 (0)