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

Jean-Noël Rouvignac
14.27.2016 7028d9f1483d6f1e77bb0f5ebd0ecc6239e431c5
opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/LDAPClientConnection.java
@@ -38,6 +38,7 @@
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
@@ -1334,14 +1335,15 @@
    {
      try
      {
        for (int msgID : operationsInProgress.keySet())
        for (Map.Entry<Integer, Operation> entry : operationsInProgress.entrySet())
        {
          int msgID = entry.getKey();
          if (msgID == messageID)
          {
            continue;
          }
          Operation o = operationsInProgress.get(msgID);
          Operation o = entry.getValue();
          if (o != null)
          {
            try