Skip to content

Commit

Permalink
fix: Change cron rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentinchampenois committed Feb 9, 2024
1 parent 2e49ac6 commit fb5c4a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/sidekiq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
class: BackupJob
queue: backups
SendNotificationMailDaily:
cron: '0 5 0 * * *' # Run at 00:05
cron: '0 0 7 * * *' # Run at 07:00AM every days
class: NotificationsDigestMailJob
queue: mailers
args: :daily
SendNotificationMailWeekly:
cron: '0 5 0 * * 6' # Run at 00:05 on Saturday
cron: '0 0 8 * * 2' # Run at 08:00AM on Tuesday
class: NotificationsDigestMailJob
queue: mailers
args: :weekly
Expand Down

0 comments on commit fb5c4a2

Please sign in to comment.