mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Chris Ridd
13.19.2014 bbaaadbd771762a2c2221fcd69b4118965d46b24
Fix OPENDJ-1275: Connections stop getting closed due to idle time outs
1 files modified
4 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/IdleTimeLimitThread.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/IdleTimeLimitThread.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions copyright 2012 ForgeRock AS.
 *      Portions copyright 2012-2014 ForgeRock AS.
 */
package org.opends.server.core;
import org.opends.messages.Message;
@@ -127,7 +127,7 @@
              long idleTimeLimit = c.getIdleTimeLimit();
              if (idleTimeLimit > 0)
              {
                if (idleTime > idleTimeLimit)
                if (idleTime >= idleTimeLimit)
                {
                  if (debugEnabled())
                  {