We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf0599 commit 2d4f141Copy full SHA for 2d4f141
src/main/java/io/crops/warmletter/global/schedule/DeliverySchedule.java
@@ -30,7 +30,7 @@ public class DeliverySchedule {
30
@Qualifier("deliveryTaskExecutor")
31
private final AsyncTaskExecutor taskExecutor;
32
33
- @Scheduled(cron = "0 */1 * * * *", zone = "Asia/Seoul")
+ @Scheduled(cron = "*/15 * * * * *", zone = "Asia/Seoul")
34
public void processDeliveryCompletion() {
35
String currentTime = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
36
log.info("--------- 배송 완료 처리 시작: {} ---------", currentTime);
0 commit comments