mirror of
https://github.com/minio/minio.git
synced 2025-11-07 21:02:58 -05:00
remove ListBucketsMetadata instead add them to AccountInfo() (#13241)
This commit is contained in:
@@ -859,10 +859,7 @@ func (s *erasureSets) ListBuckets(ctx context.Context) (buckets []BucketInfo, er
|
||||
}
|
||||
|
||||
for _, v := range healBuckets {
|
||||
listBuckets = append(listBuckets, BucketInfo{
|
||||
Name: v.Name,
|
||||
Created: v.Created,
|
||||
})
|
||||
listBuckets = append(listBuckets, BucketInfo(v))
|
||||
}
|
||||
|
||||
sort.Slice(listBuckets, func(i, j int) bool {
|
||||
|
||||
Reference in New Issue
Block a user