mirror of
https://github.com/minio/minio.git
synced 2025-11-20 18:06:10 -05:00
multipart: Multipart session map now is based on uploadID.
- Fixes initiating parallel uploads, and configs being quickly re-written by another incoming request. - Parallel uploads work smoothly now and return expected behavior.
This commit is contained in:
@@ -82,7 +82,8 @@ func (fs Filesystem) listObjects(bucket, prefix, marker, delimiter string, maxKe
|
||||
if e != nil {
|
||||
return e
|
||||
}
|
||||
if strings.HasSuffix(path, "$multiparts") {
|
||||
// Skip special temporary files, kept for multipart transaction.
|
||||
if strings.Contains(path, "$multiparts") || strings.Contains(path, "$tmpobject") {
|
||||
return nil
|
||||
}
|
||||
// We don't need to list the walk path.
|
||||
|
||||
Reference in New Issue
Block a user