diff --git a/deploy/helm/ifrcgo-helm/values.yaml b/deploy/helm/ifrcgo-helm/values.yaml index bdb250f7b..7a695a2c7 100644 --- a/deploy/helm/ifrcgo-helm/values.yaml +++ b/deploy/helm/ifrcgo-helm/values.yaml @@ -112,7 +112,7 @@ cronjobs: - command: 'index_and_notify' schedule: '*/5 * * * *' - command: 'sync_molnix' - schedule: '*/15 * * * *' + schedule: '10 */2 * * *' - command: 'ingest_appeals' schedule: '45 */2 * * *' - command: 'sync_appealdocs' diff --git a/main/sentry.py b/main/sentry.py index 98850d4a3..0a60b036b 100644 --- a/main/sentry.py +++ b/main/sentry.py @@ -106,7 +106,7 @@ class SentryMonitor(models.TextChoices): """ INDEX_AND_NOTIFY = "index_and_notify", "*/5 * * * *" - SYNC_MOLNIX = "sync_molnix", "*/15 * * * *" + SYNC_MOLNIX = "sync_molnix", "10 */2 * * *" INGEST_APPEALS = "ingest_appeals", "45 */2 * * *" SYNC_APPEALDOCS = "sync_appealdocs", "15 * * * *" REVOKE_STAFF_STATUS = "revoke_staff_status", "51 * * * *"