Skip to content

Commit

Permalink
chore: include hotfix-19541 (#26152)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsolistorres committed Sep 18, 2023
1 parent 748ed58 commit 4d8b683
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,12 @@ public static void start() throws SchedulerException {
} catch (Exception e) {
Logger.info(DotInitScheduler.class, e.toString());
}
} else {
Logger.info(DotInitScheduler.class, "Delete Old Clickstreams Job schedule disabled on this server");
Logger.info(DotInitScheduler.class, "Deleting DeleteOldClickstreams Job");
if ((job = sched.getJobDetail("DeleteOldClickstreams", DOTCMS_JOB_GROUP_NAME)) != null) {
sched.deleteJob("DeleteOldClickstreams", DOTCMS_JOB_GROUP_NAME);
}
}

//SCHEDULE PUBLISH QUEUE JOB
Expand Down

0 comments on commit 4d8b683

Please sign in to comment.