Commit 12d24824 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Changed default timeout value to 5 minutes. More clients are happy with this value (e.g iChat).

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/branches@7766 b35dd754-fafc-0310-a699-88a17e54d16e
parent 94d38cec
......@@ -173,7 +173,7 @@ hr {
<h3>Wildfire Bug Fixes</h3>
<ul>
<li>No changes</li>
<li>Changed default idle timeout value to 5 minutes.</li>
</ul>
<h3>Wildfire Enterprise</h3>
......
......@@ -37,6 +37,6 @@ public class ClientConnectionHandler extends ConnectionHandler {
}
int getMaxIdleTime() {
return JiveGlobals.getIntProperty("xmpp.client.idle", 2 * 60 * 1000) / 1000;
return JiveGlobals.getIntProperty("xmpp.client.idle", 5 * 60 * 1000) / 1000;
}
}
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