Merge pull request #634 from fabxc/fix/dns-error

Show correct error on wrong DNS response.
This commit is contained in:
Björn Rabenstein 2015-04-12 01:34:50 +02:00
commit c44c81ebb0
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ func (p *sdTargetProvider) Targets() ([]Target, error) {
for _, record := range response.Answer {
addr, ok := record.(*dns.SRV)
if !ok {
glog.Warningf("%s is not a valid SRV record", addr)
glog.Warningf("%q is not a valid SRV record", record)
continue
}
// Remove the final dot from rooted DNS names to make them look more usual.