Skip to content

Commit 94746bd

Browse files
Merge pull request #988 from Miciah/fix-zone-id-in-debug-output
pkg/destroy/aws: Fix zone id in debug output
2 parents 0957449 + 3eb37cc commit 94746bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/destroy/aws/aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ func r53ZonesToAWSObjects(zones []*route53.HostedZone, r53Client *route53.Route5
12061206
})
12071207
if err != nil {
12081208
if request.IsErrorThrottle(err) {
1209-
logger.Debugf("sleeping before trying to resolve tags for zone %s: %v", zone.Id, err)
1209+
logger.Debugf("sleeping before trying to resolve tags for zone %s: %v", *zone.Id, err)
12101210
time.Sleep(time.Second)
12111211
continue
12121212
}

0 commit comments

Comments
 (0)