Skip to content

Commit

Permalink
* fixme CompletedMultipartUpload bug: aws#1814
Browse files Browse the repository at this point in the history
  • Loading branch information
lonllua committed Aug 3, 2021
1 parent 30831c7 commit ad8e3cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clients/client-s3/protocols/Aws_restXml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10512,7 +10512,10 @@ const serializeAws_restXmlCompletedMultipartUpload = (
input: CompletedMultipartUpload,
context: __SerdeContext
): any => {
const bodyNode = new __XmlNode("CompletedMultipartUpload");
// fixme biming
// https://github.com/aws/aws-sdk-js-v3/issues/1814
// const bodyNode = new __XmlNode("CompletedMultipartUpload");
const bodyNode = new __XmlNode("CompleteMultipartUpload");
if (input.Parts !== undefined && input.Parts !== null) {
const nodes = serializeAws_restXmlCompletedPartList(input.Parts, context);
nodes.map((node: any) => {
Expand Down

0 comments on commit ad8e3cb

Please sign in to comment.