mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
fix(session): detect canceled lookup correctly
cancelation is not DNSError, so UnwrapDNSErr() returns "" as reason Signed-off-by: Martin Matous <m@matous.dev>
This commit is contained in:
parent
ede85b4cd1
commit
c67955ef0d
1 changed files with 3 additions and 3 deletions
|
@ -319,13 +319,13 @@ func (s *Session) fetchRDNSName(ctx context.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
reason, misc := exterrors.UnwrapDNSErr(err)
|
||||
misc["reason"] = reason
|
||||
if !strings.HasSuffix(reason, "canceled") {
|
||||
if !errors.Is(err, context.Canceled) {
|
||||
// Often occurs when transaction completes before rDNS lookup and
|
||||
// rDNS name was not actually needed. So do not log cancelation
|
||||
// error if that's the case.
|
||||
|
||||
reason, misc := exterrors.UnwrapDNSErr(err)
|
||||
misc["reason"] = reason
|
||||
s.log.Error("rDNS error", exterrors.WithFields(err, misc), "src_ip", s.connState.RemoteAddr)
|
||||
}
|
||||
s.connState.RDNSName.Set(nil, err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue