chore(project): disable Normandy sync tasks (#11770)

Because

* Normandy is now being decommissioned
* It is safe to disable the Normandy sync celery tasks

This commit

* Disables the Normandy sync celery tasks

fixes #11769
This commit is contained in:
Jared Lockhart 2024-11-14 15:14:59 -05:00 коммит произвёл GitHub
Родитель 41804a1566
Коммит 547e79d9e5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -375,14 +375,6 @@ SIZING_DATA_KEY = "population_sizing"
# Celery
CELERY_BROKER_URL = f"redis://{REDIS_HOST}:{REDIS_PORT}/{REDIS_DB}"
CELERY_BEAT_SCHEDULE = {
"experiment_status_ready_to_ship_task": {
"task": "experimenter.legacy.normandy.tasks.update_recipe_ids_to_experiments",
"schedule": config("CELERY_SCHEDULE_INTERVAL", default=300, cast=int),
},
"experiment_status_launched_task": {
"task": "experimenter.legacy.normandy.tasks.update_launched_experiments",
"schedule": config("CELERY_SCHEDULE_INTERVAL", default=300, cast=int),
},
"nimbus_check_kinto_push_queue_task": {
"task": "experimenter.kinto.tasks.nimbus_check_kinto_push_queue",
"schedule": config("CELERY_SCHEDULE_INTERVAL", default=300, cast=int),