Skip to content

Commit

Permalink
Merge pull request #153 from supercoding-commerce/dev
Browse files Browse the repository at this point in the history
refactor: 시연 위해서 스케줄링 시간 간격 줄였습니다.
  • Loading branch information
dabinHam authored Sep 22, 2023
2 parents 9f36684 + 53136b2 commit 2753d19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class UpdateCustomerGradeScheduler { //매월 1일 오전 12:00:00 구매
private Job updateCustomerGradeJob;

//TODO. 일단은 매일 오전 12시로 해놓고 시연할 때는 30초로 간격 줄이기
@Scheduled(cron = "0 0 0 * * *", zone = "Asia/Seoul") //초 분 시 일 월 요일 (*: 매번) - 매월 1일 오전 12:00:00 구매 금액에 따른 회원 등급 조정
@Scheduled(cron = "*/10 * * * * *", zone = "Asia/Seoul") //초 분 시 일 월 요일 (*: 매번) - 매월 1일 오전 12:00:00 구매 금액에 따른 회원 등급 조정
public void updateCustomerGradeJobRun() throws JobInstanceAlreadyCompleteException, JobExecutionAlreadyRunningException, JobParametersInvalidException, JobRestartException {

JobParameters jobParameters = new JobParameters(
Expand Down

0 comments on commit 2753d19

Please sign in to comment.