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

Chris Ridd
13.19.2014 b30aa847beca90db4b9145142f1ef6490a4c8d87
Fix OPENDJ-1275: Connections stop getting closed due to idle time outs
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/core/IdleTimeLimitThread.java 4 ●●●● patch | view | raw | blame | history
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())
                  {