Skip to content

Commit

Permalink
fix: multipart upload storage crc32 integrity (#13878)
Browse files Browse the repository at this point in the history
* fix: multipart upload storage crc32 integrity

* address comments

Co-authored-by: AllanZhengYP <[email protected]>

* fix linter

---------

Co-authored-by: Ashwin Kumar <[email protected]>
Co-authored-by: AllanZhengYP <[email protected]>
  • Loading branch information
3 people authored Oct 2, 2024
1 parent 7fed6ad commit 1eab7e0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ export const getMultipartUploadHandlers = (
inProgressUpload?.completedParts.push({
PartNumber: partNumber,
ETag: eTag,
ChecksumCRC32: crc32,
// TODO: crc32 can always be added once RN also has an implementation
...(crc32 ? { ChecksumCRC32: crc32 } : {}),
});
};
const concurrentUploadsProgressTracker =
Expand Down

0 comments on commit 1eab7e0

Please sign in to comment.