logger.info("cancelTask: Cancelling executable " + executable.getId());
executable.cancel();
}
// stop currently running phase executable
PhaseRunnable phaseRunnable = currentPhaseExecutable;
if (phaseRunnable != null) {
logger.info("stopping current phase executable " + phaseRunnable.toString());
phaseRunnable.stop();
}
}