Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ public List<ObservatoryData> saveLastData() {
return result;
}

//fixme 시도별 API받아와서 데이터 저장해야함.
@Transactional
@CacheEvict(value = "observatoryDataList", allEntries = true, beforeInvocation = true)
public List<ObservatoryData> savefailedData(List<String> failedList){
Expand Down Expand Up @@ -435,6 +436,7 @@ public List<ObservatoryData> savefailedData(List<String> failedList){
return result;
}


// @Scheduled(cron = "0 */10 * * * *", zone = "Asia/Seoul")
@Scheduled(cron = "0 30 * * * *", zone = "Asia/Seoul")
@Transactional
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spring:
- emails
- profile
redirect-uri :
- https://onair-lime.vercel.app/loadingAuth
# - https://onair-lime.vercel.app/loadingAuth
- http://localhost:5173/loadingAuth

servlet:
Expand Down