mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_admin_telnet: Use new compact function for waiting on promises
This commit is contained in:
parent
6b4ed1a30a
commit
f304a306dd
1 changed files with 1 additions and 7 deletions
|
@ -1148,13 +1148,7 @@ function def_env.xmpp:ping(localhost, remotehost, timeout)
|
||||||
end
|
end
|
||||||
local iq = st.iq{ from=localhost, to=remotehost, type="get", id=new_id()}
|
local iq = st.iq{ from=localhost, to=remotehost, type="get", id=new_id()}
|
||||||
:tag("ping", {xmlns="urn:xmpp:ping"});
|
:tag("ping", {xmlns="urn:xmpp:ping"});
|
||||||
local ret, err;
|
local ret, err = async.wait(module:context(localhost):send_iq(iq, nil, timeout));
|
||||||
local wait, done = async.waiter();
|
|
||||||
module:context(localhost):send_iq(iq, nil, timeout)
|
|
||||||
:next(function (ret_) ret = ret_; end,
|
|
||||||
function (err_) err = err_; end)
|
|
||||||
:finally(done);
|
|
||||||
wait();
|
|
||||||
if ret then
|
if ret then
|
||||||
return true, "pong from " .. ret.stanza.attr.from;
|
return true, "pong from " .. ret.stanza.attr.from;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue