From b421296e13ccf0b2b6b1a0e46fb3263e824024d5 Mon Sep 17 00:00:00 2001 From: Vadim Stepanov Date: Thu, 11 Jul 2024 17:28:21 +0100 Subject: [PATCH] Fix `start_sync_org_with_chatops_proxy` crontab (#4661) Related to https://raintank-corp.slack.com/archives/C04JCU51NF8/p1720695995646029 --- engine/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/settings/base.py b/engine/settings/base.py index d185d8bb..6638d16b 100644 --- a/engine/settings/base.py +++ b/engine/settings/base.py @@ -594,7 +594,7 @@ START_SYNC_ORG_WITH_CHATOPS_PROXY_ENABLED = getenv_boolean("START_SYNC_ORG_WITH_ if FEATURE_MULTIREGION_ENABLED and START_SYNC_ORG_WITH_CHATOPS_PROXY_ENABLED: CELERY_BEAT_SCHEDULE["start_sync_org_with_chatops_proxy"] = { "task": "apps.chatops_proxy.tasks.start_sync_org_with_chatops_proxy", - "schedule": crontab(hour="*/24"), # Every 24 hours, feel free to adjust + "schedule": crontab(minute=0, hour=12), # Execute every day at noon "args": (), }