Skip to content

Commit

Permalink
reverting scheduler changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnabmitra committed Dec 31, 2024
1 parent 2577dc3 commit 2fbc1fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class ScheduledTaskService(
@Scheduled(initialDelay = 0L, fixedDelay = 5000L)
fun updateSpotlight() = explorerService.createSpotlight()

@Scheduled(initialDelay = 0L, fixedDelay = 300000L) // Every 5 minutes
@Scheduled(initialDelay = 0L, fixedDelay = 5000L)
fun retryBlockTxs() {
logger.info("Retrying block/tx records")
BlockTxRetryRecord.getRecordsToRetry().map { height ->
Expand Down

0 comments on commit 2fbc1fc

Please sign in to comment.