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

Jean-Noel Rouvignac
02.57.2013 9c8493a28711aff83940445f42f923c587eea4f8
opends/src/server/org/opends/server/replication/server/MessageHandler.java
@@ -428,9 +428,9 @@
  }
  /**
   * Get the older Change Number for that server.
   * Get the older CSN for that server.
   * Returns null when the queue is empty.
   * @return The older change number.
   * @return The older CSN.
   */
  public CSN getOlderUpdateCSN()
  {
@@ -461,14 +461,14 @@
          the lateQueue when it will send the next update but we are not yet
          there. So let's take the last change not sent directly from the db.
          */
          result = findOldestChangeNumberFromReplicaDBs();
          result = findOldestCSNFromReplicaDBs();
        }
      }
    }
    return result;
  }
  private CSN findOldestChangeNumberFromReplicaDBs()
  private CSN findOldestCSNFromReplicaDBs()
  {
    SortedSet<ReplicaDBCursor> sortedCursors = null;
    try