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

pgamba
15.15.2009 943c10cc9d2d60660c53271a25848ecad77a91e7
opends/src/server/org/opends/server/replication/plugin/LDAPReplicationDomain.java
@@ -4537,6 +4537,20 @@
          newattrs.add(a);
      }
      ((DeleteMsg)msg).setEclIncludes(newattrs);
      // For delete only, add the modifiersName since they are required in the
      // ECL entry but are not part of other parts of the message
      AttributeType atype = DirectoryServer.getAttributeType("modifiersname");
      List<Attribute> attrs = entry.getAttribute(atype);
      if (attrs != null)
      {
        for (Attribute a : attrs)
        {
          ((DeleteMsg)msg).setInitiatorsName(a.iterator().next().toString());
          break;
        }
      }
    }
    else if (op instanceof PostOperationModifyOperation)
    {