Browse Source

Ticket 49576 - Add support of ";deletedattribute" in ds-replcheck

Description: Also need to check for ";deletedattribute" when processing LDIF file

https://pagure.io/389-ds-base/issue/49576

Reviewed by: tbordaz(Thanks!)
Mark Reynolds 7 years ago
parent
commit
9e046a35a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ldap/admin/src/scripts/ds-replcheck

+ 1 - 1
ldap/admin/src/scripts/ds-replcheck

@@ -197,7 +197,7 @@ def remove_attr_state_info(attr):
     idx = attr.find(';')
     if idx > 0:
         state_attr = attr  # preserve state info for diff report
-        if ";deleted" in attr:
+        if ";deleted" in attr or ";deletedattribute" in attr:
             # Ignore this attribute it was deleted
             return None, state_attr
         attr = attr[:idx]