Commit b892c6a3 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Reduced timeout from 10 minutes to 1 minute for discovering registed users of...

Reduced timeout from 10 minutes to 1 minute for discovering registed users of remote servers or components.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9714 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8540f4cc
......@@ -344,9 +344,9 @@ public class UserManager implements IQResultListener {
server.getIQRouter().addIQResultListener(iq.getID(), this);
synchronized (user.toBareJID().intern()) {
server.getIQRouter().route(iq);
// Wait for the reply to be processed. Time out in 10 minutes.
// Wait for the reply to be processed. Time out in 1 minute.
try {
user.toBareJID().intern().wait(600000);
user.toBareJID().intern().wait(60000);
}
catch (InterruptedException e) {
// Do nothing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment