|
|
|
@ -35,12 +35,12 @@ public class AsyncFetchTask implements SchedulingConfigurer {
|
|
|
|
|
scheduledRequest.setCronName("syncFetch");
|
|
|
|
|
logger.info("syncFetch----------------");
|
|
|
|
|
ScheduledEntity scheduledEntity = scheduledDao.findScheduled(scheduledRequest);
|
|
|
|
|
String cron = scheduledEntity!=null ? scheduledEntity.getCron() : "* 0/2 * * * ?";
|
|
|
|
|
String cron = scheduledEntity!=null ? scheduledEntity.getCron() : "0 0/5 * * * ?";
|
|
|
|
|
|
|
|
|
|
if (cron.isEmpty()) {
|
|
|
|
|
logger.error("cron is null");
|
|
|
|
|
}
|
|
|
|
|
logger.info("syncFetch----------------");
|
|
|
|
|
logger.info("syncFetch----------------"+cron);
|
|
|
|
|
return new CronTrigger(cron).nextExecutionTime(triggerContext);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|