You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in QuartzScheduling.stop function it always waits until all tasks are finished
public void stop() throws Exception {
if (started) {
this.scheduler.shutdown(true); // <---
started = false;
log.info("Quartz stopped");
}
}
It would be very useful if user can decide whether or not they want the scheduler to shutdown without waiting for the task to finish - as for now whenever I tried to stop my system, it can take few minutes due to existing long-running task
The text was updated successfully, but these errors were encountered:
Currently in
QuartzScheduling.stop
function it always waits until all tasks are finishedIt would be very useful if user can decide whether or not they want the scheduler to shutdown without waiting for the task to finish - as for now whenever I tried to stop my system, it can take few minutes due to existing long-running task
The text was updated successfully, but these errors were encountered: