Skip to content

Commit

Permalink
chore: codegen fix from aws#730
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jan 14, 2020
1 parent 696189f commit 6a95eb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clients/client-s3-control/protocols/Aws_restXml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2335,13 +2335,13 @@ const serializeAws_restXmlS3UserMetadata = (
)
);
entryNode.addChildNode(keyNode);
const keyNode = new __XmlNode("key");
keyNode.addChildNode(
const valueNode = new __XmlNode("value");
valueNode.addChildNode(
new __XmlNode("MaxLength1024String").addChildNode(
new __XmlText(input[key])
)
);
entryNode.addChildNode(keyNode);
entryNode.addChildNode(valueNode);
collectedNodes.push(entryNode);
});
return collectedNodes;
Expand Down

0 comments on commit 6a95eb1

Please sign in to comment.