fix(oohelperd): reduce differences with legacy helper (#504)

Part of https://github.com/ooni/probe/issues/1707
This commit is contained in:
Simone Basso 2021-09-27 08:13:30 +02:00 committed by GitHub
commit 985c1ba761
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 3 deletions

View file

@ -28,5 +28,8 @@ type DNSConfig struct {
func DNSDo(ctx context.Context, config *DNSConfig) {
defer config.Wg.Done()
addrs, err := config.Resolver.LookupHost(ctx, config.Domain)
if addrs == nil {
addrs = []string{} // fix: the old test helper did that
}
config.Out <- CtrlDNSResult{Failure: newfailure(err), Addrs: addrs}
}