Skip to content

Commit

Permalink
Merge pull request #160 from UnivApp/feature/notification-refactor12
Browse files Browse the repository at this point in the history
refactor: 알림 처리 시간 변경
  • Loading branch information
nyeroni authored Oct 30, 2024
2 parents 3b5a53c + 8111947 commit 1ef1a35
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 1ef1a35

Please sign in to comment.