list object include deleted support (#882)

Co-authored-by: houseme <housemecn@gmail.com>
This commit is contained in:
weisd
2025-11-18 21:51:10 +08:00
committed by GitHub
parent 6da5766ea2
commit 55d44622ed
10 changed files with 31 additions and 5 deletions
+1 -1
View File
@@ -498,7 +498,7 @@ impl HealStorageAPI for ECStoreHealStorage {
match self
.ecstore
.clone()
.list_objects_v2(bucket, prefix, None, None, 1000, false, None)
.list_objects_v2(bucket, prefix, None, None, 1000, false, None, false)
.await
{
Ok(list_info) => {
+1
View File
@@ -1005,6 +1005,7 @@ impl Scanner {
100, // max_keys - small limit for performance
false, // fetch_owner
None, // start_after
false, // incl_deleted
)
.await
{