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

boli
16.35.2007 a26a3b8f4f025d0185de7ab628ca6662447e877e
Fixed bug where the file name of the archive created by the JE backup manager is confusing. It will no longer include a .zip extention for 
any type of backup. This makes it consistant with the rest of the file names created by other backends.

Fix for issue 1283
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/backends/jeb/BackupManager.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/backends/jeb/BackupManager.java
@@ -320,10 +320,6 @@
    try
    {
      archiveFilename = BACKUP_BASE_FILENAME + backendID + "-" + backupID;
      if (!encrypt)
      {
        archiveFilename = archiveFilename + ".zip";
      }
      archiveFile = new File(backupDir.getPath(), archiveFilename);
      if (archiveFile.exists())
      {