Skip to content

Commit

Permalink
🐛 fix: 스케줄러 cron 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimhan-nah committed Dec 18, 2023
1 parent 787b080 commit f7bac94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class TournamentScheduler extends AbstractScheduler {

public TournamentScheduler(TournamentService tournamentService) {
this.tournamentService = tournamentService;
this.cron = "0 */10 0 * * *"; // TODO QA 이후 0 0 0 * * * 로 변경
this.cron = "0 0/10 * * * *"; // TODO QA 이후 0 0 0 * * * 로 변경
}

@Override
Expand Down

0 comments on commit f7bac94

Please sign in to comment.