Skip to content

Commit 201604a

Browse files
committed
also update time for testing
1 parent b8aecc2 commit 201604a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scheduler.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
require "clockwork"
44

55
module Clockwork
6-
every(1.day, "Send Due Emails", at: "08:00", tz: Rails.application.config.time_zone) do
6+
every(1.day, "Send Due Emails", at: "13:30", tz: Rails.application.config.time_zone) do
77
SendDueEmailsJob.perform_now
88
end
99

10-
every(1.day, "Send Overdue Emails", at: "08:00", tz: Rails.application.config.time_zone) do
10+
every(1.day, "Send Overdue Emails", at: "13:40", tz: Rails.application.config.time_zone) do
1111
SendOverdueEmailsJob.perform_now
1212
end
1313

14-
every(1.day, "Send Category Overdue Emails", at: "08:00", tz: Rails.application.config.time_zone) do
14+
every(1.day, "Send Category Overdue Emails", at: "13:50", tz: Rails.application.config.time_zone) do
1515
SendCategoryOverdueEmailsJob.perform_now
1616
end
1717

0 commit comments

Comments
 (0)