forked from toolshed/abra
		
	fix: more accurate dns errors
This commit is contained in:
		@ -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
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user