-
Type:
Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.0.X EE, Master
-
Fix Version/s: 7.0.0 DXP FP28, 7.0.X EE, 7.0.4 CE GA5, 7.1.X, Master
-
Component/s: Portal Services > Scheduler
-
Branch Version/s:7.0.x
-
Backported to Branch:Committed
-
Git Pull Request:
This is found by analyzing code, can not be tested manually.
In old logic, when we schedule a job on Quartz, we do :
synchronized (this) { scheduler.deleteJob(trigger.getJobKey()); scheduler.scheduleJob(jobDetail, trigger); }
We should not do this, since we already provide a way to update a job, what we should do is , do not override old ones, and do some logging if job with same name exists
- causes
-
LPS-74346 MessageListeners that attempt to re-register (rather than update) will log a warning
- Closed