Skip to content

Commit a74a82a

Browse files
Merge pull request #89 from Clover-21/develop
fix: 알림 전송시간 30 -> 0변경
2 parents 22e99f3 + ab05e60 commit a74a82a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/clovar/howkiki/domain/order/service/OrderCreateService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void scheduleNewOrderNotice(Order order, String methodUrl) {
179179
} finally {
180180
scheduler.shutdown(); // 작업 완료 후 스레드 풀 종료 - 자원 낭비 방지!
181181
}
182-
}, 30, TimeUnit.SECONDS); // 데모를 위해 30초 -> 0초로 변경
182+
}, 0, TimeUnit.SECONDS); // 데모를 위해 30초 -> 0초로 변경
183183
}
184184

185185
}

0 commit comments

Comments
 (0)