Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Oct 14, 2024
1 parent 4023c35 commit c22f157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinks/webhdfs/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async fn hdfs_rotate_files_after_the_buffer_size_is_reached() {

let mut response_lines: Vec<Vec<String>> = Vec::new();
for o in objects {
let bs = op.read(o.path()).await.unwrap();
let bs = op.read(o.path()).await.unwrap().to_vec();
let buf_read = BufReader::new(Cursor::new(bs));

response_lines.push(buf_read.lines().map(|l| l.unwrap()).collect());
Expand Down

0 comments on commit c22f157

Please sign in to comment.