// If the job exists
if (m.hasJob(id)) {
log.info("Found job with id {}", id);
Future<?> f = m.ping(id);
this.info = new JobInfoImpl();
if(f.isDone()){
// The job is finished
if(f.isCancelled()){
// NOTE: Canceled jobs should never exist.
// The web service remove any deleted process from the manager