mirror of
https://github.com/pgsty/minio.git
synced 2026-08-08 23:33:30 +03:00
Avoid frivolous GetObjectMetadata() calls at driver level, return back all the information in donut ListObjects()
This commit is contained in:
@@ -67,7 +67,7 @@ type BucketMetadata struct {
|
||||
|
||||
// ListObjects container for list objects response
|
||||
type ListObjects struct {
|
||||
Objects []string `json:"objects"`
|
||||
CommonPrefixes []string `json:"commonPrefixes"`
|
||||
IsTruncated bool `json:"isTruncated"`
|
||||
Objects map[string]ObjectMetadata `json:"objects"`
|
||||
CommonPrefixes []string `json:"commonPrefixes"`
|
||||
IsTruncated bool `json:"isTruncated"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user