From c375b11cb02bf396305fc288c1fdbff0b630f848 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Mon, 15 Aug 2022 08:32:13 -0400 Subject: [PATCH] initialise the resolver config for the DNS resolution (how was this even working before?!) --- lib/App/Netdisco/Util/FastResolver.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/App/Netdisco/Util/FastResolver.pm b/lib/App/Netdisco/Util/FastResolver.pm index 39a2674a..842ff4dd 100644 --- a/lib/App/Netdisco/Util/FastResolver.pm +++ b/lib/App/Netdisco/Util/FastResolver.pm @@ -50,6 +50,7 @@ sub hostnames_resolve_async { my $skip = setting('dns')->{'no'}; my $ETCHOSTS = setting('dns')->{'ETCHOSTS'}; AnyEvent::DNS::resolver->timeout(@$timeouts); + AnyEvent::DNS::resolver->os_config(); # Set up the condvar my $done = AE::cv;