vendor: Update minio-go library with fixes for objectlisting.

This commit is contained in:
Harshavardhana
2016-02-02 11:59:55 -08:00
parent 9ddfa2529c
commit de9682a4e7
14 changed files with 297 additions and 62 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ func (c Client) PutObjectWithProgress(bucketName, objectName string, reader io.R
}
// putSmall object.
if size < minPartSize && size > 0 {
if size < minPartSize && size >= 0 {
return c.putObjectSingle(bucketName, objectName, reader, size, contentType, progress)
}
// For all sizes greater than 5MiB do multipart.