Skip to content

Commit

Permalink
micro lint
Browse files Browse the repository at this point in the history
  • Loading branch information
clairezed committed Jan 30, 2024
1 parent 084bae8 commit 34042ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/clockwork.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module Clockwork
end
if Rails.env == 'production' && !ENV['FEATURE_HEAVY_CRON_DISABLED'].to_b
every(1.day, 'generate_quarterly_reports', at: '01:00', if: -> (t) { t.day == 20 && (t.month == 1 || t.month == 4 || t.month == 7 || t.month == 10) }, tz: 'UTC') do
QuarterlyReports::FindAntennesJob.perform_later
QuarterlyReports::FindAntennesJob.perform_later
end
every(1.day, 'send_quarterly_reports_emails', at: '08:00', if: -> (t) { t.day == 23 && (t.month == 1 || t.month == 4 || t.month == 7 || t.month == 10) }, tz: 'UTC') do
QuarterlyReports::NotifyManagersJob.perform_later
Expand Down

0 comments on commit 34042ad

Please sign in to comment.