Skip to content

Commit

Permalink
set org verify reminder service to run at 2pm est
Browse files Browse the repository at this point in the history
  • Loading branch information
emyl3 committed Jan 26, 2024
1 parent 723ee60 commit b184ef6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ 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")
@Scheduled(cron = "0 0 14 * * *", zone = "America/New_York")
@SchedulerLock(
name = "ReminderService_sendAccountReminderEmails",
lockAtLeastFor = "PT30S",
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ smarty-streets:
token: ${SMARTY_AUTH_TOKEN}
simple-report:
id-verification-reminders:
enabled: false
enabled: true
authorization:
# these are overridden by application-dev, -prod, -test, etc
role-claim: dev_roles
Expand Down

0 comments on commit b184ef6

Please sign in to comment.