We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0fd315 commit b6d357eCopy full SHA for b6d357e
.changes/next-release/bugfix-ManagedUpload-91473b2e.json
@@ -0,0 +1,5 @@
1
+{
2
+ "type": "bugfix",
3
+ "category": "ManagedUpload",
4
+ "description": "fix MalformedXML error for relatively large file via managed upload"
5
+}
lib/s3/managed_upload.js
@@ -574,7 +574,7 @@ AWS.S3.ManagedUpload = AWS.util.inherit({
574
if (self.completeInfo[partNumber] && self.completeInfo[partNumber].ETag !== null) return null;
575
partInfo.ETag = data.ETag;
576
self.doneParts++;
577
- if (self.isDoneChunking && self.doneParts === self.numParts) {
+ if (self.isDoneChunking && self.doneParts === self.totalPartNumbers) {
578
self.finishMultiPart();
579
} else {
580
self.fillQueue.call(self);
0 commit comments