Skip to content

Commit

Permalink
fix(storage): remove unnecessary metadata io during list (#15133) (#1…
Browse files Browse the repository at this point in the history
…5134)

Co-authored-by: zwang28 <[email protected]>
  • Loading branch information
github-actions[bot] and zwang28 authored Feb 19, 2024
1 parent 793b808 commit b3a8d39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl ObjectStore for OpendalObjectStore {
.op
.lister_with(prefix)
.recursive(true)
.metakey(Metakey::ContentLength | Metakey::ContentType)
.metakey(Metakey::ContentLength)
.await?;

let stream = stream::unfold(object_lister, |mut object_lister| async move {
Expand Down

0 comments on commit b3a8d39

Please sign in to comment.