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

Fixes #1706
This commit is contained in:
Krishna Srinivas 2016-05-21 00:18:28 +05:30 committed by Harshavardhana
parent e4240aa58f
commit 5b95f097d4

View file

@ -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)