opends/src/messages/messages/quicksetup.properties
@@ -1213,6 +1213,8 @@ INFO_REVERSION_ORACLE_UNSUPPORTED=Reversion not supported from version %s to \ version %s is not supported. To upgrade You must uninstall the current \ server, install the new server, and manually migrate your data: %s INFO_UPGRADE_ORACLE_SAME_VERSION=The current version and the version of the \ binaries to upgrade to are the same (%s) INFO_REVERSION_TYPE_PROMPT=How would you like to specify the archive used \ to revert this instance? INFO_REVERSION_TYPE_PROMPT_RECENT=Use the most recent versioned archive opends/src/quicksetup/org/opends/quicksetup/upgrader/Upgrader.java
@@ -1546,12 +1546,18 @@ private void initialize() throws ApplicationException { try { BuildInformation fromVersion = getCurrentBuildInformation(); BuildInformation toVersion = getStagedBuildInformation(); if (fromVersion.equals(toVersion)) { throw new ApplicationException(ReturnCode.APPLICATION_ERROR, INFO_UPGRADE_ORACLE_SAME_VERSION.get( fromVersion.toString()), null); } if (getInstallation().getStatus().isServerRunning()) { new ServerController(getInstallation()).stopServer(true); } BuildInformation fromVersion = getCurrentBuildInformation(); BuildInformation toVersion = getStagedBuildInformation(); this.historicalOperationId = writeInitialHistoricalRecord(fromVersion, toVersion);