Skip to content

Commit

Permalink
revert cron change
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Oct 27, 2023
1 parent 775f76b commit 3132c7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class AsyncService(
@Scheduled(cron = "0 0 0/1 * * ?") // Every hour
fun saveChainAum() = explorerService.saveChainAum()

@Scheduled(cron = "0 0 1 * * *") // Every day at 1 am
@Scheduled(cron = "0 0 1 * * ?") // Every day at 1 am
fun updateTokenHistorical() {
val today = DateTime.now().startOfDay()
var startDate = today.minusMonths(1)
Expand Down

0 comments on commit 3132c7b

Please sign in to comment.