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
Make it possible to disable integrity checks for multipart uploads
As announced in #2960,
AWS SDK for Go v2 service/s3 v1.73.0 shipped a change
(#2808) that adopted the new
default integrity protections.
While it is possible to revert to the previous behavior by setting
`AWS_REQUEST_CHECKSUM_CALCULATION=when_required`, this config setting
did not apply to the S3 Manager multipart uploader, which always enabled
CRC32 checksums by default.
This commit checks the S3 options and only attaches the CRC32 checksums
if `when_required` is not set.
Relates to #3007
Signed-off-by: Stan Hu <[email protected]>
"description": "Make it possible to disable integrity checks for multipart uploads with the s3/manager package. The S3 Uploader is updated to enabled to request checksums for multipart uploads only if RequestChecksumCalculation is not set to `when_required`. This makes it possible to preserve backwards compatibility for multipart uploads for third-party S3 providers.",
0 commit comments