Skip to content

Commit

Permalink
plugin/azure return FQDN as MNAME in SOA record (coredns#4286)
Browse files Browse the repository at this point in the history
Automatically submitted.
  • Loading branch information
mancaus authored Nov 12, 2020
1 parent 2299c5b commit c9c71d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/azure/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit c9c71d3

Please sign in to comment.