Increase maximum 1000 List keys to 10000 (#8444)

This commit is contained in:
Harshavardhana
2019-10-28 10:36:15 -07:00
committed by GitHub
parent a49d4a9cb2
commit a2825702f8
3 changed files with 8 additions and 8 deletions

View File

@@ -34,9 +34,9 @@ import (
const (
timeFormatAMZLong = "2006-01-02T15:04:05.000Z" // Reply date format with nanosecond precision.
maxObjectList = 1000 // Limit number of objects in a listObjectsResponse.
maxUploadsList = 1000 // Limit number of uploads in a listUploadsResponse.
maxPartsList = 1000 // Limit number of parts in a listPartsResponse.
maxObjectList = 10000 // Limit number of objects in a listObjectsResponse.
maxUploadsList = 10000 // Limit number of uploads in a listUploadsResponse.
maxPartsList = 10000 // Limit number of parts in a listPartsResponse.
)
// LocationResponse - format for location response.