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

neil_a_wilson
02.35.2007 bf62fe2d81a22e50065a0c682a4ffb2a1308122f
opends/src/server/org/opends/server/core/ModifyOperation.java
@@ -2731,20 +2731,8 @@
    }
    // Stop the processing timer.
    processingStopTime = System.currentTimeMillis();
    // Send the modify response to the client.
    clientConnection.sendResponse(this);
    // Log the modify response.
    logModifyResponse(this);
    // Notify any change listeners and/or persistent searches that might be
    // registered with the server.
    // Notify any change notification listeners that might be registered with
    // the server.
    if (getResultCode() == ResultCode.SUCCESS)
    {
      for (ChangeNotificationListener changeListener :
@@ -2765,7 +2753,24 @@
                   message, msgID);
        }
      }
    }
    // Stop the processing timer.
    processingStopTime = System.currentTimeMillis();
    // Send the modify response to the client.
    clientConnection.sendResponse(this);
    // Log the modify response.
    logModifyResponse(this);
    // Notify any persistent searches that might be registered with the server.
    if (getResultCode() == ResultCode.SUCCESS)
    {
      for (PersistentSearch persistentSearch :
           DirectoryServer.getPersistentSearches())
      {