From 04cc4a73d481e90737f225343291f3ff02864288 Mon Sep 17 00:00:00 2001 From: Szabo Zoltan Date: Fri, 17 Jan 2025 09:11:58 +0100 Subject: [PATCH] Change sync_molnix schedule --- deploy/helm/ifrcgo-helm/values.yaml | 2 +- main/sentry.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/helm/ifrcgo-helm/values.yaml b/deploy/helm/ifrcgo-helm/values.yaml index c93b673c5..341d6da7d 100644 --- a/deploy/helm/ifrcgo-helm/values.yaml +++ b/deploy/helm/ifrcgo-helm/values.yaml @@ -124,7 +124,7 @@ cronjobs: - command: 'index_and_notify' schedule: '*/5 * * * *' - command: 'sync_molnix' - schedule: '*/15 * * * *' + schedule: '10 */3 * * *' - command: 'ingest_appeals' schedule: '45 */2 * * *' - command: 'sync_appealdocs' diff --git a/main/sentry.py b/main/sentry.py index 97890ce2f..3b6d7d064 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 */3 * * *" INGEST_APPEALS = "ingest_appeals", "45 */2 * * *" SYNC_APPEALDOCS = "sync_appealdocs", "15 * * * *" REVOKE_STAFF_STATUS = "revoke_staff_status", "51 * * * *"