*/
@Override
public void reRun(String jobId, Configuration conf) throws DagEngineException {
try {
validateReRunConfiguration(conf);
new ReRunCommand(jobId, conf, getAuthToken()).call();
start(jobId);
}
catch (CommandException ex) {
throw new DagEngineException(ex);
}