From ead79b36af70f832518b3d299e2773524844d39a Mon Sep 17 00:00:00 2001 From: Michael Derynck Date: Wed, 11 Sep 2024 12:24:03 -0600 Subject: [PATCH] Enable schedule for new sync process (#4992) # What this PR does Replaces old scheduled sync task with new one. ## Which issue(s) this PR closes Related to [issue link here] ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [ ] Documentation added (or `pr:no public docs` PR label added if not required) - [ ] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes. --- 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 22d92333..6450b622 100644 --- a/engine/settings/base.py +++ b/engine/settings/base.py @@ -571,7 +571,7 @@ CELERY_BEAT_SCHEDULE = { "args": (), }, "start_sync_organizations": { - "task": "apps.grafana_plugin.tasks.sync.start_sync_organizations", + "task": "apps.grafana_plugin.tasks.sync_v2.start_sync_organizations_v2", "schedule": crontab(minute="*/30"), "args": (), },