Add 3 FIXMEs

This commit is contained in:
Vitaliy Filippov 2021-07-19 17:17:51 +03:00
parent ff72c3ce16
commit 0bb71bb573
3 changed files with 3 additions and 0 deletions
pkg/s3

View file

@ -168,6 +168,7 @@ func (client *s3Client) removeObjects(bucketName, prefix string) error {
}
// will delete files one by one without file lock
// FIXME Delete in parallel (if we want to delete objects at all!)
func (client *s3Client) removeObjectsOneByOne(bucketName, prefix string) error {
objectsCh := make(chan minio.ObjectInfo, 1)
removeErrCh := make(chan minio.RemoveObjectError, 1)