plugin/azure return FQDN as MNAME in SOA record (#4286)

Automatically submitted.
This commit is contained in:
Blake Ryan 2020-11-12 14:48:03 +00:00 committed by GitHub
parent 2299c5b696
commit c9c71d3904
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -286,7 +286,7 @@ func updateZoneFromPrivateResourceSet(recordSet privatedns.RecordSetListResultPa
Refresh: uint32(*(SOA.RefreshTime)),
Serial: uint32(*(SOA.SerialNumber)),
Mbox: dns.Fqdn(*(SOA.Email)),
Ns: *(SOA.Host)}
Ns: dns.Fqdn(*(SOA.Host))}
newZ.Insert(soa)
}