Skip to content

Commit

Permalink
fix : cron 요일 수정
Browse files Browse the repository at this point in the history
- THU -> TUE 로 변경
  • Loading branch information
moonn6pence authored Oct 19, 2023
1 parent 6bf9a3b commit 97138d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class LunchScraper {
private final ScrapInfoProviderFactory scrapInfoProviderFactory;

// 토 ~ 수요일 동안 03:00에 이틀 뒤의 웰스토리 메뉴를 스크래핑
@Scheduled(cron = "0 0 3 ? * SAT,SUN,MON,THU,WED")
@Scheduled(cron = "0 0 3 ? * SAT,SUN,MON,TUE,WED")
public void scrapWelstory(){

WelstoryInfoProvider welstoryInfoProvider = (WelstoryInfoProvider) scrapInfoProviderFactory.getProviderFrom("welstory");
Expand Down

0 comments on commit 97138d9

Please sign in to comment.