Commit fba813e6 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/3_2_branch@7766 b35dd754-fafc-0310-a699-88a17e54d16e
parent 11e7a115
...@@ -173,7 +173,7 @@ hr { ...@@ -173,7 +173,7 @@ hr {
<h3>Wildfire Bug Fixes</h3> <h3>Wildfire Bug Fixes</h3>
<ul> <ul>
<li>No changes</li> <li>Changed default idle timeout value to 5 minutes.</li>
</ul> </ul>
<h3>Wildfire Enterprise</h3> <h3>Wildfire Enterprise</h3>
......
...@@ -37,6 +37,6 @@ public class ClientConnectionHandler extends ConnectionHandler { ...@@ -37,6 +37,6 @@ public class ClientConnectionHandler extends ConnectionHandler {
} }
int getMaxIdleTime() { 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