mirror of
https://github.com/minio/minio.git
synced 2025-11-20 18:06:10 -05:00
Fix for Istruncated set to true under certain conditions.
Optimizing List Objects by using binary sort to discard entries in cases where prefix or marker is set. Adding test coverage to ListObjects. Adding benchmark to ListObjects.
This commit is contained in:
@@ -24,7 +24,6 @@ import (
|
||||
"encoding/xml"
|
||||
"math/rand"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"gopkg.in/check.v1"
|
||||
)
|
||||
@@ -216,7 +215,6 @@ func testPaging(c *check.C, create func() Filesystem) {
|
||||
c.Assert(len(result.Objects), check.Equals, 1)
|
||||
c.Assert(result.Prefixes[0], check.Equals, "this/is/also/")
|
||||
}
|
||||
time.Sleep(time.Second)
|
||||
|
||||
// check delimited results with delimiter without prefix
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user