Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ private void initializeDataDeleteScheduledJob() throws Exception {
}

private void initializeQueueProcessingScheduledJob() throws Exception {
if (StringUtils.isBlank(scheduledDataImportJobCronExpression)) {
if (StringUtils.isBlank(scheduledQueueProcessingJobCronExpression)) {
LOG.warn("Can't initialize Cron Job for IDM Queue Processing, the cron expression is empty");
return;
}
Expand All @@ -1050,7 +1050,7 @@ private void initializeQueueProcessingScheduledJob() throws Exception {
properties.setProperty("jobName", "IDM.QUEUE");
properties.setProperty("groupName", "PORTAL.IDM");
properties.setProperty("job", IDMQueueProcessorJob.class.getName());
properties.setProperty("expression", scheduledDataImportJobCronExpression);
properties.setProperty("expression", scheduledQueueProcessingJobCronExpression);
params.addParam(properties);
jobSchedulerService.addCronJob(new CronJob(params));
}
Expand Down