mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +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
e073b85487
commit
8681102aa7
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