Skip to content

Commit

Permalink
Use correct domain root-servers.net for DNS probes (nmstate#1163)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Karis <ak.karis@gmail.com>
  • Loading branch information
andreaskaris committed Apr 10, 2023
1 parent 5bfb437 commit 1bcf612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/probe/probes.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func runDNS(_ client.Client) (bool, error) {
return d.DialContext(ctx, network, net.JoinHostPort(runningNameServer.String(), "53"))
},
}
_, err := r.LookupNS(context.TODO(), "root-server.net")
_, err := r.LookupNS(context.TODO(), "root-servers.net")
if err != nil {
errs = append(errs, err)
} else {
Expand Down

0 comments on commit 1bcf612

Please sign in to comment.