quartz-mongodb
quartz-mongodb copied to clipboard
setUnscheduleAllTriggers (true) does not have any effect
trafficstars
try {
Integer.parseInt("a");
}catch (Exception e){
JobExecutionException e2 = new JobExecutionException(e);
e2.setUnscheduleAllTriggers(true);
throw e2;
}
e2.setUnscheduleAllTriggers(true); This method doesn't work. The trigger associated with the job is still running. What do I need to do to make it work? Thanks.
Perhaps that operation doesn't perform the necessary table updates. I haven't used it or have seen it used, so it can be an overlooked API part. Feel free to investigate and submit a pull request.