mirror of
https://github.com/offen/docker-volume-backup.git
synced 2025-10-06 05:14:31 +08:00
Call ListObjects without WithMetadata option (#165)
This commit is contained in:
parent
92b888e72c
commit
907deecdd0
1 changed files with 2 additions and 3 deletions
|
@ -113,9 +113,8 @@ func (b *s3Storage) Copy(file string) error {
|
|||
// Prune rotates away backups according to the configuration and provided deadline for the S3/Minio storage backend.
|
||||
func (b *s3Storage) Prune(deadline time.Time, pruningPrefix string) (*storage.PruneStats, error) {
|
||||
candidates := b.client.ListObjects(context.Background(), b.bucket, minio.ListObjectsOptions{
|
||||
WithMetadata: true,
|
||||
Prefix: filepath.Join(b.DestinationPath, pruningPrefix),
|
||||
Recursive: true,
|
||||
Prefix: filepath.Join(b.DestinationPath, pruningPrefix),
|
||||
Recursive: true,
|
||||
})
|
||||
|
||||
var matches []minio.ObjectInfo
|
||||
|
|
Loading…
Add table
Reference in a new issue