mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_admin_shell: Remove now redundant promise awaiting in xmpp:ping()
This commit is contained in:
parent
10664a8877
commit
769a3ed263
1 changed files with 3 additions and 6 deletions
|
@ -1350,12 +1350,9 @@ function def_env.xmpp:ping(localhost, remotehost, timeout)
|
|||
local iq = st.iq{ from=localhost, to=remotehost, type="get", id=new_id()}
|
||||
:tag("ping", {xmlns="urn:xmpp:ping"});
|
||||
local time_start = time.now();
|
||||
local ret, err = async.wait_for(module:context(localhost):send_iq(iq, nil, timeout));
|
||||
if ret then
|
||||
return true, ("pong from %s in %gs"):format(ret.stanza.attr.from, time.now() - time_start);
|
||||
else
|
||||
return false, tostring(err);
|
||||
end
|
||||
return module:context(localhost):send_iq(iq, nil, timeout):next(function (pong)
|
||||
return ("pong from %s in %gs"):format(pong.stanza.attr.from, time.now() - time_start);
|
||||
end);
|
||||
end
|
||||
|
||||
def_env.dns = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue