Browse Source

[Fix#12231][scheduler-plugin] fix the bug which some scheduled tasks are not triggered on time (#12233) (#12767)

Co-authored-by: fan.wang <fan.wang@jiduauto.com>
Co-authored-by: Ivan <wangfan910406@gmail.com>
Co-authored-by: fan.wang <fan.wang@jiduauto.com>
3.0.2-release
Eric Gao 2 years ago committed by GitHub
parent
commit
7d998879ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/quartz/impl/QuartzExecutorImpl.java

2
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/quartz/impl/QuartzExecutorImpl.java

@ -123,7 +123,7 @@ public class QuartzExecutorImpl implements QuartzExecutor {
.endAt(endDate)
.withSchedule(
cronSchedule(cronExpression)
.withMisfireHandlingInstructionDoNothing()
.withMisfireHandlingInstructionFireAndProceed()
.inTimeZone(DateUtils.getTimezone(timezoneId))
)
.forJob(jobDetail).build();

Loading…
Cancel
Save