fix: make dns resolve errors more accurate
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Wiktor W. 2024-01-05 17:31:25 +01:00
parent 5d503319e3
commit fd15aeab9a
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import (
func EnsureIPv4(domainName string) (string, error) {
ipv4, err := net.ResolveIPAddr("ip4", domainName)
if err != nil {
return "", err
return "", fmt.Errorf("unable to resolve ipv4 address for %s, %s", domainName, err)
}
// NOTE(d1): e.g. when there is only an ipv6 record available