Skip to content

Commit

Permalink
clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
xushiyan committed Jan 14, 2025
1 parent 8833af8 commit 1f16f46
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/core/src/storage/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ impl StorageReader {
let get_result = object_store.get(&object_meta.location).await?;
// TODO change to use stream
let bytes = get_result.bytes().await?;
println!("Bytes length: {}", bytes.len());
let reader = BufReader::with_capacity(bytes.len(), Cursor::new(bytes));
Ok(Self { reader })
}
Expand Down

0 comments on commit 1f16f46

Please sign in to comment.