Skip to content

Commit

Permalink
Amendment to R53 fix #325
Browse files Browse the repository at this point in the history
  • Loading branch information
iann0036 committed Jun 1, 2023
1 parent 211a2fc commit 119e0dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/services/route53.js
Original file line number Diff line number Diff line change
Expand Up @@ -962,9 +962,9 @@ async function updateDatatableNetworkingAndContentDeliveryRoute53() {
while (nextData.IsTruncated) {
await sdkcall("Route53", "listResourceRecordSets", {
HostedZoneId: hostedZone.Id.split("/").pop(),
StartRecordType: data.NextRecordType,
StartRecordName: data.NextRecordName,
StartRecordIdentifier: data.NextRecordIdentifier
StartRecordType: nextData.NextRecordType,
StartRecordName: nextData.NextRecordName,
StartRecordIdentifier: nextData.NextRecordIdentifier
}, true).then(async (data) => {
data.ResourceRecordSets.forEach(resourceRecordSet => {
resourceRecordSet['HostedZoneId'] = hostedZone.Id.split("/").pop();
Expand Down

0 comments on commit 119e0dc

Please sign in to comment.