-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DailyTimeIntervalTrigger failed to set endingDailyAfterCount = 1 #220
Comments
I have run into the same issue. |
zemian
added a commit
to zemian/quartz
that referenced
this issue
Feb 15, 2019
…ndingDailyAfterCount = 1
This was referenced Feb 15, 2019
zemian
added a commit
that referenced
this issue
Feb 15, 2019
…dtime DailyTimeIntervalTrigger failed to set endingDailyAfterCount = 1 #220
zemian
added a commit
that referenced
this issue
Feb 15, 2019
…dtime-master DailyTimeIntervalTrigger failed to set endingDailyAfterCount = 1 #220
This issue is now fixed |
This was referenced Mar 8, 2021
This was referenced Mar 16, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is probably due to me using the wrong trigger type, but if you only have one execution per day of a DailyTimeIntervalTrigger it fails with a message like: "StartTimeOfDay TimeOfDay[11:11:0] should not come after endTimeOfDay TimeOfDay[11:11:0]"
The problem appears to result from line 345 and 346 in DailyTimeIntervalScheduleBuilder
These two lines set the start time equal to the end time which then blows up in DailyTimeIntervalTriggerImpl on line 857 which throws an exception if the start time is not before the end time.
The exception stack trace is:
The text was updated successfully, but these errors were encountered: