opends/src/messages/messages/tools.properties
@@ -2578,3 +2578,4 @@ INFO_UPGRADE_TASK_9013_DESCRIPTION_10019=OpenDJ 2.5.0-Xpress1 introduced a \ regression in the ds-sync-hist ordering index. This index has to be rebuilt and this could take a long time \ to proceed. Do you want to launch this process at automatically at the end of the upgrade? SEVERE_ERR_TASK_TOOL_LDAP_ERROR_10020=ERROR: The server rejected the task for the following reason: %s opends/src/server/org/opends/server/tools/tasks/TaskTool.java
@@ -23,7 +23,7 @@ * * * Copyright 2007-2010 Sun Microsystems, Inc. * Portions Copyright 2012 ForgeRock AS * Portions Copyright 2012-2013 ForgeRock AS */ package org.opends.server.tools.tasks; @@ -372,7 +372,7 @@ if (err != null) err.println(wrapText(message, MAX_LINE_WIDTH)); ret = 1; } catch (LDAPException le) { Message message = ERR_TASK_TOOL_DECODE_ERROR.get(le.getMessage()); Message message = ERR_TASK_TOOL_LDAP_ERROR.get(le.getMessage()); if (err != null) err.println(wrapText(message, MAX_LINE_WIDTH)); ret = 1; } catch (OpenDsException e) { opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendWorkflowElement.java
@@ -462,7 +462,7 @@ { // replacement reason returned to the user operation.setResultCode(altResultCode); operation.appendMaskedErrorMessage(altMessage); operation.appendErrorMessage(altMessage); // real underlying reason operation.setMaskedResultCode(resultCode); operation.appendMaskedErrorMessage(message);