diff --git a/deploy/helm/ifrcgo-helm/values.yaml b/deploy/helm/ifrcgo-helm/values.yaml index a1dc9a04b..3b32b49ce 100644 --- a/deploy/helm/ifrcgo-helm/values.yaml +++ b/deploy/helm/ifrcgo-helm/values.yaml @@ -277,11 +277,11 @@ cronjobs: - command: 'notify_validators' schedule: '0 0 * * *' - command: 'poll_gdacs_cyclone' - schedule: '0 0 * * 0' + schedule: '0 11 * * 0' - command: 'poll_gdacs_flood' - schedule: '15 9 * * *' + schedule: '0 11 * * *' - command: 'poll_usgs_earthquake' - schedule: '0 0 * * 0' + schedule: '0 18 * * 0' - command: 'alert_notification' schedule: '0 */2 * * *' # https://github.com/jazzband/django-oauth-toolkit/blob/master/docs/management_commands.rst#cleartokens diff --git a/main/sentry.py b/main/sentry.py index 67e7bd609..d21eb02fd 100644 --- a/main/sentry.py +++ b/main/sentry.py @@ -129,9 +129,9 @@ class SentryMonitor(models.TextChoices): INGEST_NS_INITIATIVES = "ingest_ns_initiatives", "0 0 * * 0" INGEST_ICRC = "ingest_icrc", "0 3 * * 0" NOTIFY_VALIDATORS = "notify_validators", "0 0 * * *" - POLL_USGS_EARTHQUAKE = "poll_usgs_earthquake", "0 0 * * 0" - POLL_GDACS_FLOOD = "poll_gdacs_flood", "15 9 * * *" - POLL_GDACS_CYCLONE = "poll_gdacs_cyclone", "0 0 * * 0" + POLL_USGS_EARTHQUAKE = "poll_usgs_earthquake", "0 18 * * 0" + POLL_GDACS_FLOOD = "poll_gdacs_flood", "0 11 * * *" + POLL_GDACS_CYCLONE = "poll_gdacs_cyclone", "0 11 * * 0" OAUTH_CLEARTOKENS = "oauth_cleartokens", "0 1 * * *" EAP_SUBMISSION_REMINDER = "eap_submission_reminder", "0 0 * * *" ALERT_NOTIFICATION = "alert_notification", "0 */2 * * *"