UploadPartCommand
is returning a checksum while I said in CreateMultipartUploadCommand
I want a FULL_OBJECT
checksum check
#6900
Labels
Checkboxes for prior research
Describe the bug
So I have a NestJS app, there I am using
@aws-sdk/s3-client
to upload a file in multiple part. The thing is that UploadPart is generating a checksum for eachUploadPartCommand
. So can you kindly confirm if this is a bug?I mean I also suspect that I am doing something wrong, but my
console.log
s are not saying thatRegression Issue
SDK version number
@aws-sdk/[email protected]
Which JavaScript Runtime is this issue in?
Node.js
Details of the browser/Node.js/ReactNative version
v22.12.0
Reproduction Steps
cd microservices/grpc
.pnpm i --frozen-lockfile
.cp apps/file-upload/.env.example apps/file-upload/.env
.OBJECT_STORAGE_ENDPOINT
. It should be used only for local testing with Minio.nx serve file-upload
.nx e2e file-upload-e2e
.Observed Behavior
It says something like the calculated CRC32 does not match the one specified in the
CompleteMultipartUploadCommand
.Expected Behavior
Just complete the multipart upload.
Possible Solution
Dunno.
Additional Information/Context
UploadPartCommand
is returning a checksum for each part.FULL_OBJECT
checksum check here. BTW feel free to add moreconsole.log
s to see if I am setting those configs correctly.BTW if you're interested in my test, you can find it here.
The text was updated successfully, but these errors were encountered: