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 38f4f04 commit 7cc768bCopy full SHA for 7cc768b
src/main/java/com/somemore/domains/recruitboard/scheduler/RecruitBoardStatusUpdateScheduler.java
@@ -21,7 +21,8 @@ public class RecruitBoardStatusUpdateScheduler {
21
22
@Retryable(
23
retryFor = Exception.class,
24
- backoff = @Backoff(delay = 100000)
+ maxAttempts = 3,
25
+ backoff = @Backoff(delay = 2000)
26
)
27
@Scheduled(cron = "0 0 0 * * ?")
28
public void updateRecruitBoardStatusToClosed() {
@@ -37,7 +38,8 @@ public void updateRecruitBoardStatusToClosed() {
37
38
39
40
41
42
43
44
45
public void updateRecruitBoardStatusToCompleted() {
0 commit comments