This commit is contained in:
Ishan Jain 2024-05-03 06:23:04 +01:00 committed by GitHub
commit a459c515da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ func validateBindHosts(conf *configuration) (err error) {
for i, addr := range conf.DNS.BindHosts {
if !addr.IsValid() {
return fmt.Errorf("dns.bind_hosts at index %d is not a valid ip address", i)
return fmt.Errorf("dns.bind_hosts at index %d with value '%s' is not a valid ip address. try quoting the value", i, addr)
}
}