Skip to content

Commit

Permalink
fix(storage): remove unnecessary metadata io during list (#15133)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 authored Feb 19, 2024
1 parent 2592880 commit 6739733
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 6739733

Please sign in to comment.