Skip to content

Commit

Permalink
Update glob.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgazelka authored Nov 27, 2024
1 parent b9208ef commit 9806a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-scan/src/glob.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async fn run_glob(
.glob(glob_input, None, None, limit, io_stats, Some(file_format))
.await?;

let stream = stream.map(|fm| Ok(fm?));
let stream = stream.map_err(|e| e.into());

let stream = stream.boxed();

Expand Down

0 comments on commit 9806a0b

Please sign in to comment.