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

abobrov
28.36.2008 ff1dc93989f6df8bdea1b0f31c05067397a0cca1
opends/src/server/org/opends/server/backends/jeb/VerifyJob.java
@@ -2035,6 +2035,11 @@
  class ProgressTask extends TimerTask
  {
    /**
     * The total number of records to process.
     */
    private long totalCount;
    /**
     * The number of records that had been processed at the time of the
     * previous progress report.
     */
@@ -2066,6 +2071,8 @@
      previousTime = System.currentTimeMillis();
      prevEnvStats =
          rootContainer.getEnvironmentStats(new StatsConfig());
      totalCount = rootContainer.getEntryContainer(
        verifyConfig.getBaseDN()).getEntryCount();
    }
    /**
@@ -2085,8 +2092,8 @@
      float rate = 1000f*deltaCount / deltaTime;
      Message message =
          INFO_JEB_VERIFY_PROGRESS_REPORT.get(latestCount, errorCount, rate);
      Message message = INFO_JEB_VERIFY_PROGRESS_REPORT.get(
        latestCount, totalCount, errorCount, rate);
      logError(message);
      try