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
"Based on configured schedule, the given trigger '" + trigger.getKey() + "' will never fire.");
This is a problem for apps which wish to schedule a one-off job in the future. If the app is restarted after the job time has passed (and cloud based apps are often frequently restarted), then the app will fail to start.
I think it would be helpful for many users of Quartz if this behaviour were either turned off by default (which would increase the risk of users accidentally scheduling a job that will never run), or made configurable.
See also #621 , an earlier issue with the same request
The text was updated successfully, but these errors were encountered:
Currently, if Quartz is started with a Trigger date for a Job that is in the past, it will fail to start with the following error:
This is controlled by the following code:
quartz/quartz/src/main/java/org/quartz/core/QuartzScheduler.java
Line 852 in a5c4d27
quartz/quartz/src/main/java/org/quartz/core/QuartzScheduler.java
Line 898 in a5c4d27
This is a problem for apps which wish to schedule a one-off job in the future. If the app is restarted after the job time has passed (and cloud based apps are often frequently restarted), then the app will fail to start.
I think it would be helpful for many users of Quartz if this behaviour were either turned off by default (which would increase the risk of users accidentally scheduling a job that will never run), or made configurable.
See also #621 , an earlier issue with the same request
The text was updated successfully, but these errors were encountered: