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 {
|
||||
if server.role == "master" {
|
||||
soa := results[ix].serial
|
||||
masters = append(masters, soa)
|
||||
if soa > latest_soa {
|
||||
latest_soa = soa
|
||||
// check that a result was actually received by the master
|
||||
if results[ix] != nil {
|
||||
soa := results[ix].serial
|
||||
masters = append(masters, soa)
|
||||
if soa > latest_soa {
|
||||
latest_soa = soa
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user