Skip to content

Commit

Permalink
Update cron for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbrown committed Dec 27, 2024
1 parent 8c09380 commit 7fe1326
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public ReminderService(OrganizationQueueRepository orgQueueRepo, EmailService em
* Wrapper method for sending account reminder emails so automation can call the inner method
* without hitting the lock or conditions.
*/
@Scheduled(cron = "0 0 1 * * *", zone = "America/New_York")
// temp override for testing
@Scheduled(cron = "0 */15 * * * *", zone = "America/New_York")
@SchedulerLock(
name = "ReminderService_sendAccountReminderEmails",
lockAtLeastFor = "PT30S",
Expand Down

0 comments on commit 7fe1326

Please sign in to comment.