Skip to content

Commit 2d4f141

Browse files
committed
chore: 15초 마다 편지 스케쥴러 실행 (WR9-151)
1 parent 6cf0599 commit 2d4f141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/crops/warmletter/global/schedule/DeliverySchedule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class DeliverySchedule {
3030
@Qualifier("deliveryTaskExecutor")
3131
private final AsyncTaskExecutor taskExecutor;
3232

33-
@Scheduled(cron = "0 */1 * * * *", zone = "Asia/Seoul")
33+
@Scheduled(cron = "*/15 * * * * *", zone = "Asia/Seoul")
3434
public void processDeliveryCompletion() {
3535
String currentTime = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
3636
log.info("--------- 배송 완료 처리 시작: {} ---------", currentTime);

0 commit comments

Comments
 (0)