You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
Both the InMemoryProvider and FileProvider use Int.MaxValue as their default maxkeys value:
valcount= maxkeys.getOrElse(Int.MaxValue)
This should be set to 1,000 as a default so it is similar to the real S3 API, otherwise you can run into situations when testing where the Mock API will return more items than a real API call would.
Both the InMemoryProvider and FileProvider use
Int.MaxValue
as their default maxkeys value:This should be set to 1,000 as a default so it is similar to the real S3 API, otherwise you can run into situations when testing where the Mock API will return more items than a real API call would.
See documentation of AWS limit here: https://docs.aws.amazon.com/AmazonS3/latest/API/v2-RESTBucketGET.html
The text was updated successfully, but these errors were encountered: