Skip to content

Commit

Permalink
[Fix] 데이터 연동 오류 수정 확인
Browse files Browse the repository at this point in the history
- 테이터 연동 오류 수정하고, 스케쥴러 시간 재 설정
  • Loading branch information
yjy8501 committed Aug 8, 2024
1 parent 1a54204 commit 0dcbe4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public BatchScheduler(JobLauncher jobLauncher, Job exhibitionInfoJob, @Qualifier
this.festivalInfoJob = festivalInfoJob;
}

@Scheduled(fixedDelay = 100000000)
@Scheduled(cron = "0 1 0 * * ?")
public void runExhibitionBatchJob() {
JobParameters jobParameters = new JobParametersBuilder()
.addLong("time", System.currentTimeMillis())
Expand All @@ -38,7 +38,7 @@ public void runExhibitionBatchJob() {
}
}

@Scheduled(fixedDelay = 100000000)
@Scheduled(cron = "0 1 0 * * ?")
public void runFestivalBatchJob() {
JobParameters jobParameters = new JobParametersBuilder()
.addLong("time", System.currentTimeMillis())
Expand Down

0 comments on commit 0dcbe4f

Please sign in to comment.