From 4ac87f03cdaacba2380832f03a11574e0f1ab700 Mon Sep 17 00:00:00 2001 From: seokhwan-an Date: Sat, 16 Sep 2023 21:12:44 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=84=ED=95=9C=20schedule=20=EC=8B=9C=EA=B0=84?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/shook/shook/song/application/CachedSongGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/shook/shook/song/application/CachedSongGenerator.java b/backend/src/main/java/shook/shook/song/application/CachedSongGenerator.java index df5094d4a..55c65f4c5 100644 --- a/backend/src/main/java/shook/shook/song/application/CachedSongGenerator.java +++ b/backend/src/main/java/shook/shook/song/application/CachedSongGenerator.java @@ -14,7 +14,7 @@ public class CachedSongGenerator { private final SongRepository songRepository; - @Scheduled(cron = "0 10 21 * * ?") + @Scheduled(cron = "0 17 21 * * ?") public void recreateCachedSong() { CachedSong.recreate(songRepository.findAllWithKillingParts()); }