Fix start_sync_org_with_chatops_proxy crontab (#4661)

Related to
https://raintank-corp.slack.com/archives/C04JCU51NF8/p1720695995646029
This commit is contained in:
Vadim Stepanov 2024-07-11 17:28:21 +01:00 committed by GitHub
parent e583d5fc52
commit b421296e13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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": (),
}