diff --git a/backend/product/src/main/java/org/samtuap/inong/common/scheduler/DeliveryNotificationScheduler.java b/backend/product/src/main/java/org/samtuap/inong/common/scheduler/DeliveryNotificationScheduler.java index f7df78ef..e06a18a7 100644 --- a/backend/product/src/main/java/org/samtuap/inong/common/scheduler/DeliveryNotificationScheduler.java +++ b/backend/product/src/main/java/org/samtuap/inong/common/scheduler/DeliveryNotificationScheduler.java @@ -15,7 +15,7 @@ public class DeliveryNotificationScheduler { private final NotificationService notificationService; @SchedulerLock(name = "shedLock_notify_delivery", lockAtLeastFor = "1m", lockAtMostFor = "59m") - @Scheduled(cron = "0 0 7 * * *") + @Scheduled(cron = "0 0 15 * * *") public void notifyTodayDelivery() { notificationService.notifyTodayDelivery(); }