mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.unbound: Fix to initialize under prosodyctl
Lazy initialization only worked for async queries, but prosodyctl check dns uses sync queries.
This commit is contained in:
parent
ed63f7f10b
commit
77ee71daa7
1 changed files with 1 additions and 0 deletions
|
@ -139,6 +139,7 @@ local function lookup(callback, qname, qtype, qclass)
|
|||
end
|
||||
|
||||
local function lookup_sync(qname, qtype, qclass)
|
||||
if not unbound then initialize(); end
|
||||
qtype = qtype and s_upper(qtype) or "A";
|
||||
qclass = qclass and s_upper(qclass) or "IN";
|
||||
local ntype, nclass = types[qtype], classes[qclass];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue