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

coulbeck
13.23.2006 6cff6e50e589ff91df76fafac8e0f72918b5ce5c
opends/src/server/org/opends/server/backends/jeb/VerifyJob.java
@@ -216,14 +216,14 @@
   */
  public void verifyBackend() throws DatabaseException, JebException
  {
    String backendDirectory = config.getBackendDirectory();
    File backendDirectory = config.getBackendDirectory();
    // Open the environment read-only.
    EnvironmentConfig envConfig = config.getEnvironmentConfig();
    envConfig.setReadOnly(true);
    envConfig.setAllowCreate(false);
    envConfig.setTransactional(false);
    env = new Environment(new File(backendDirectory), envConfig);
    env = new Environment(backendDirectory, envConfig);
    Debug.debugMessage(DebugLogCategory.BACKEND, DebugLogSeverity.INFO,
                       CLASS_NAME, "verifyBackend",