mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.connect: Prefer last connection error over last resolver error
E.g. "connection refused" over one IP version instead of NoError for the other IP version.
This commit is contained in:
parent
256466cd33
commit
068388d9c7
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ local function attempt_connection(p)
|
|||
-- No more targets to try
|
||||
p:log("debug", "No more connection targets to try", p.target_resolver.last_error);
|
||||
if p.listeners.onfail then
|
||||
p.listeners.onfail(p.data, p.target_resolver.last_error or p.last_error or "unable to resolve service");
|
||||
p.listeners.onfail(p.data, p.last_error or p.target_resolver.last_error or "unable to resolve service");
|
||||
end
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue