Skip to content

Commit

Permalink
Made batch workflow replayer a bit more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Aug 12, 2018
1 parent 949093d commit 324502b
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -107,7 +107,11 @@ namespace wrench {
// Submit this job to the batch service
WRENCH_INFO("Submitting a [-N:%s, -t:%s, -c:%s] job",
batch_job_args["-N"].c_str(), batch_job_args["-t"].c_str(), batch_job_args["-c"].c_str());
job_manager->submitJob(standard_job, this->batch_service, batch_job_args);
try {
job_manager->submitJob(standard_job, this->batch_service, batch_job_args);
} catch (WorkflowExecutionException &e) {
WRENCH_INFO("Couldn't submit the job: %s (ignoring)", e.getCause()->toString().c_str());
}

}

Expand Down

0 comments on commit 324502b

Please sign in to comment.