stopCurrentCycle();
}
private void stopCurrentCycle() {
// stop a currently running task
Executable executable = currentExecutable;
if (executable != null) {
logger.info("cancelTask: Cancelling executable " + executable.getId());
executable.cancel();
}
// stop currently running phase executable
PhaseRunnable phaseRunnable = currentPhaseExecutable;
if (phaseRunnable != null) {