Upgrade AWS SDK

Signed-off-by: Guillaume Delacour <delacoug@amazon.com>
This commit is contained in:
Guillaume Delacour
2024-01-11 11:47:06 +01:00
parent d412854259
commit 373b24e2c1
4 changed files with 62 additions and 62 deletions

View File

@@ -410,7 +410,7 @@ func (s AWSStorage) GetMinioBucketSize(cloudCredentialsFile, bslBucket, bslPrefi
return 0, errors.Wrapf(err, "failed to list objects in bucket %s", bslBucket)
}
for _, obj := range page.Contents {
totalSize += obj.Size
totalSize += *obj.Size
}
}
return totalSize, nil