Skip to content

Commit

Permalink
Fix config of sidekiq scheduler (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilco375 authored Jun 14, 2023
1 parent a8264cc commit 7f57ba6
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions config/sidekiq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
- action_mailbox_routing
- action_mailbox_incineration

schedule:
UserCleanupJob:
cron: '0 9 1 * *' # At 09:00:00 on each first of the month => https://crontab.guru/#0_9_1_*_*
SoftDeleteCleanupJob:
cron: '0 9 1 * *' # At 09:00:00 on each first of the month => https://crontab.guru/#0_9_1_*_*
HealthCheckJob:
cron : '*/30 * * * *' # Every 30 minutes => https://crontab.guru/#*/30_*_*_*_*
args: ['sidekiq']
:scheduler:
:schedule:
UserCleanupJob:
cron: '0 9 1 * *' # At 09:00:00 on each first of the month => https://crontab.guru/#0_9_1_*_*
SoftDeleteCleanupJob:
cron: '0 9 1 * *' # At 09:00:00 on each first of the month => https://crontab.guru/#0_9_1_*_*
HealthCheckJob:
cron : '*/30 * * * *' # Every 30 minutes => https://crontab.guru/#*/30_*_*_*_*
args: ['sidekiq']

0 comments on commit 7f57ba6

Please sign in to comment.