Skip to content

Commit

Permalink
change schedule for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mehansen committed Dec 19, 2024
1 parent 1572b33 commit 0be9d15
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,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")
// For ease of testing, run every 15 min
@Scheduled(cron = "0 */15 * * * *", zone = "America/New_York")
@SchedulerLock(
name = "ReminderService_sendAccountReminderEmails",
lockAtLeastFor = "PT30S",
Expand Down

0 comments on commit 0be9d15

Please sign in to comment.