mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
parse.HostPortorFile: return error when 0 found (#3742)
* parse.HostPortorFile: return error when 0 found Return an error when we haven't found any nameservers. This is the alternative considered in #3735. It's also slighly less code to be changing. Replaces: #3741 Closes: #3741 #3735 Signed-off-by: Miek Gieben <miek@miek.nl> * Add extra test case here as well Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
@@ -54,6 +54,11 @@ func TestHostPortOrFile(t *testing.T) {
|
||||
"[fd01::1%ens3]:153",
|
||||
false,
|
||||
},
|
||||
{
|
||||
"8.9.1043",
|
||||
"",
|
||||
true,
|
||||
},
|
||||
}
|
||||
|
||||
err := ioutil.WriteFile("resolv.conf", []byte("nameserver 127.0.0.1\n"), 0600)
|
||||
|
||||
Reference in New Issue
Block a user