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

gbellato
10.29.2009 4594bba26216d84018569a042f6517d966bf106f
opends/src/server/org/opends/server/replication/plugin/LDAPReplicationDomain.java
@@ -492,7 +492,7 @@
    }
    else
    {
      solveConflictFlag = true;
      solveConflictFlag = configuration.isSolveConflicts();
    }
    Backend backend = retrievesBackend(baseDn);
@@ -4369,6 +4369,22 @@
    // Read fractional configuration and reconnect if needed
    readFractionalConfig(configuration, true);
    /*
     * Modify conflicts are solved for all suffixes but the schema suffix
     * because we don't want to store extra information in the schema
     * ldif files.
     * This has no negative impact because the changes on schema should
     * not produce conflicts.
     */
    if (baseDn.compareTo(DirectoryServer.getSchemaDN()) == 0)
    {
      solveConflictFlag = false;
    }
    else
    {
      solveConflictFlag = configuration.isSolveConflicts();
    }
    return new ConfigChangeResult(ResultCode.SUCCESS, false);
  }