From c6cf436b1475e1260311cd407c26591b333e41da Mon Sep 17 00:00:00 2001 From: thguss Date: Sun, 29 Oct 2023 02:06:28 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]=20=EC=9A=94=EC=9D=BC=20=EA=B0=92=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sopt/makers/operation/controller/ScheduleController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/sopt/makers/operation/controller/ScheduleController.java b/src/main/java/org/sopt/makers/operation/controller/ScheduleController.java index 9b2ff415..8ede0853 100644 --- a/src/main/java/org/sopt/makers/operation/controller/ScheduleController.java +++ b/src/main/java/org/sopt/makers/operation/controller/ScheduleController.java @@ -14,7 +14,7 @@ public class ScheduleController { private final LectureService lectureService; - @Scheduled(cron = "0 0 0 ? * 7") + @Scheduled(cron = "0 0 0 ? * SUN") public void endLecture() { lectureService.finishLecture(); }