opendj-sdk/opends/src/messages/messages/tools.properties
@@ -2164,6 +2164,9 @@ SEVERE_ERR_TASK_TOOL_START_TIME_NO_LDAP_1459=You have provided options for \ scheduling this operation as a task but options provided for connecting to \ the server's tasks backend resulted in the following error: '%s' SEVERE_ERR_TASK_TOOL_NO_VALID_LDAP_OPTIONS_1460=You have provided options for \ scheduling this operation as a task but options provided for connecting to \ the server's tasks backend are invalid or missing INFO_DESCRIPTION_PROP_FILE_PATH_1461=Path to the file containing default \ property values used for command line arguments INFO_DESCRIPTION_NO_PROP_FILE_1462=No properties file will be \ opendj-sdk/opends/src/server/org/opends/server/tools/tasks/TaskTool.java
@@ -236,7 +236,15 @@ * @throws CLIException if there is a problem with one of the values provided * by the user. */ protected void validateTaskArgs() throws ArgumentException, CLIException { protected void validateTaskArgs() throws ArgumentException, CLIException { if ((startArg.isPresent() || recurringArg.isPresent()) && !processAsTask()) { throw new ArgumentException( ERR_TASK_TOOL_NO_VALID_LDAP_OPTIONS.get()); } if (startArg.isPresent() && !NOW.equals(startArg.getValue())) { try { Date date = StaticUtils.parseDateTimeString(startArg.getValue());