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

neil_a_wilson
23.27.2006 e1862b6b8d276a6719f1277a7ca9781a1294180c
opends/src/server/org/opends/server/core/DeleteOperation.java
@@ -971,6 +971,31 @@
        }
        // Check for and handle a request to cancel this operation.
        if (cancelRequest != null)
        {
          setCancelResult(CancelResult.CANCELED);
          if (cancelRequest.notifyOriginalRequestor() ||
              DirectoryServer.notifyAbandonedOperations())
          {
            setResultCode(ResultCode.CANCELED);
            String cancelReason = cancelRequest.getCancelReason();
            if (cancelReason != null)
            {
              appendErrorMessage(cancelReason);
            }
            clientConnection.sendResponse(this);
          }
          processingStopTime = System.currentTimeMillis();
          logDeleteResponse(this);
          return;
        }
        // Get the backend to use for the delete.  If there is none, then fail.
        Backend backend = DirectoryServer.getBackend(entryDN);
        if (backend == null)