1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
This commit is contained in:
Tom Limoncelli
2023-11-01 13:52:23 -04:00
parent d068234d44
commit 7ce90fc75f
2 changed files with 2 additions and 2 deletions

View File

@@ -310,7 +310,7 @@ func (g *gcloudProvider) GetZoneRecordsCorrections(dc *models.DomainConfig, exis
// not re-used in the next iteration.
chunks := txtutil.ToChunks(r.GetTargetField())
printer.Printf("DEBUG: gcloud txt chunks=%+v\n", chunks)
newRRs.Rrdatas = append(newRRs.Rrdatas, chunks[:]...)
newRRs.Rrdatas = append(newRRs.Rrdatas, chunks[0:]...)
} else {
newRRs.Rrdatas = append(newRRs.Rrdatas, r.GetTargetCombined())
}