mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-05 17:16:59 +02:00
fix(idna): fix handling of domains
Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>
This commit is contained in:
parent
e9ec3acdaa
commit
474d5b3600
@ -734,9 +734,7 @@ func (p *AWSProvider) submitChanges(ctx context.Context, changes Route53Changes,
|
||||
log.Infof("Desired change: %s %s %s", c.Action, *c.ResourceRecordSet.Name, c.ResourceRecordSet.Type)
|
||||
}
|
||||
|
||||
if p.dryRun {
|
||||
continue
|
||||
}
|
||||
if !p.dryRun {
|
||||
|
||||
params := &route53.ChangeResourceRecordSetsInput{
|
||||
HostedZoneId: aws.String(z),
|
||||
@ -788,6 +786,7 @@ func (p *AWSProvider) submitChanges(ctx context.Context, changes Route53Changes,
|
||||
time.Sleep(p.batchChangeInterval)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if failedUpdate {
|
||||
failedZones = append(failedZones, z)
|
||||
|
Loading…
Reference in New Issue
Block a user