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

Chris Ridd
13.45.2014 7cd18b5d2c261c0f0378e9d8202c8325f0952f1d
Forward port fix for OPENDJ-1275: Connections stop getting closed due to idle time outs
1 files modified
4 ■■■■ changed files
opendj-sdk/opendj3-server-dev/src/server/org/opends/server/core/IdleTimeLimitThread.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opendj3-server-dev/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())
                  {