Skip to content

Commit

Permalink
refactor: 알림 처리 시간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
nyeroni committed Oct 30, 2024
1 parent 3b5a53c commit 8111947
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private CalendarEvent getCalendarEventById(Long calendarId) {
}

@Transactional
@Scheduled(cron = "0 50 14 * * ?")
@Scheduled(cron = "0 0 14 * * ?")
public void sendNotifications() {
LocalDate today = LocalDate.now();
List<Notification> dueNotifications = notificationRepository.findByNotificationDate(today);
Expand Down

0 comments on commit 8111947

Please sign in to comment.