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

Gaetan Boismal
20.18.2015 92f86826768d4df9eb14367ba07c66af8af9f6b6
opendj-server-legacy/src/main/java/org/opends/server/protocols/http/HTTPClientConnection.java
@@ -419,7 +419,7 @@
      }
      catch (LdapException e)
      {
        op.promise.handleError(e);
        op.promise.handleException(e);
      }
    }
  }
@@ -709,7 +709,7 @@
    OperationWithPromise op = operationsInProgress.remove(messageID);
    if (op != null)
    {
      op.promise.handleError(newLdapException(ResultCode.CANCELLED));
      op.promise.handleException(newLdapException(ResultCode.CANCELLED));
      return op.operation.cancel(cancelRequest);
    }
    return new CancelResult(ResultCode.NO_SUCH_OPERATION, null);
@@ -748,7 +748,7 @@
        {
          try
          {
            op.promise.handleError(newLdapException(ResultCode.CANCELLED));
            op.promise.handleException(newLdapException(ResultCode.CANCELLED));
            op.operation.abort(cancelRequest);
            if (keepStats)