mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Disable jitter for default resolver (used by blocking dns.lookup() calls)
This fixes 'prosodyctl check dns' being slow.
This commit is contained in:
parent
fb63560591
commit
fb5059547f
1 changed files with 1 additions and 0 deletions
|
@ -1191,6 +1191,7 @@ end
|
|||
|
||||
local _resolver = dns.resolver();
|
||||
dns._resolver = _resolver;
|
||||
_resolver.jitter, _resolver.retry_jitter = false, false;
|
||||
|
||||
function dns.lookup(...) -- - - - - - - - - - - - - - - - - - - - - lookup
|
||||
return _resolver:lookup(...);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue