Fix case where a master isn't available
This commit is contained in:
parent
028a9ab276
commit
ff83171909
11
dns.go
11
dns.go
@ -243,10 +243,13 @@ func (m *DNSMetrics) Collect() {
|
|||||||
|
|
||||||
for ix, server := range dns_servers {
|
for ix, server := range dns_servers {
|
||||||
if server.role == "master" {
|
if server.role == "master" {
|
||||||
soa := results[ix].serial
|
// check that a result was actually received by the master
|
||||||
masters = append(masters, soa)
|
if results[ix] != nil {
|
||||||
if soa > latest_soa {
|
soa := results[ix].serial
|
||||||
latest_soa = soa
|
masters = append(masters, soa)
|
||||||
|
if soa > latest_soa {
|
||||||
|
latest_soa = soa
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user