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
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
Bug Report
Version
Platform
AWS Services
S3
Description
The
list_objects
client function produces a XML parsing error for large files because themodel::Object
has asize
(in bytes) with typei32
, which I believe maxes out around 2GB.https://github.com/awslabs/aws-sdk-rust/blob/main/sdk/s3/src/model.rs#L11230-L11231
https://github.com/awslabs/aws-sdk-rust/blob/main/sdk/s3/src/xml_deser.rs#L3958-L3961
Example code:
I expected an
Ok
resultInstead I got the following
ListObjectsError
:With the following relevant trace logs:
Notice the part
<Size>2940645877</Size>
, which is greater than the max value ofi32
: 2147483647The text was updated successfully, but these errors were encountered: