fix: resolver error handling exception
This commit is contained in:
parent
093525ec17
commit
9201e7a43a
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ func ResolveIPv4WithResolver(host string, r Resolver) (netip.Addr, error) {
|
||||||
if ips, err := ResolveAllIPv4WithResolver(host, r); err == nil {
|
if ips, err := ResolveAllIPv4WithResolver(host, r); err == nil {
|
||||||
return ips[rand.Intn(len(ips))], nil
|
return ips[rand.Intn(len(ips))], nil
|
||||||
} else {
|
} else {
|
||||||
return netip.Addr{}, nil
|
return netip.Addr{}, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue