multipart: listing does not skip uploadIDmarker. (#1708)

Fixes #1706
master
Krishna Srinivas 8 years ago committed by Harshavardhana
parent e4240aa58f
commit 5b95f097d4
  1. 4
      object-common-multipart.go

@ -342,6 +342,10 @@ func listMetaBucketMultipartFiles(layer ObjectLayer, prefixPath string, markerPa
storage = l.storage
}
if recursive && markerPath != "" {
markerPath = pathJoin(markerPath, incompleteFile)
}
walker := lookupTreeWalk(layer, listParams{minioMetaBucket, recursive, markerPath, prefixPath})
if walker == nil {
walker = startTreeWalk(layer, minioMetaBucket, prefixPath, markerPath, recursive)

Loading…
Cancel
Save