mirror of https://github.com/status-im/consul.git
Correctly detect that an answer has been truncated
This commit is contained in:
parent
88c42f4056
commit
69696a9c1b
|
@ -509,7 +509,7 @@ func trimUDPAnswers(config *DNSConfig, resp *dns.Msg) (trimmed bool) {
|
|||
resp.Answer = resp.Answer[:len(resp.Answer)-1]
|
||||
}
|
||||
|
||||
return len(resp.Answer) < maxAnswers
|
||||
return len(resp.Answer) < numAnswers
|
||||
}
|
||||
|
||||
// serviceLookup is used to handle a service query
|
||||
|
|
Loading…
Reference in New Issue