From a674de4db5cbcf31a874f4525534c1a5e63950fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 10 Oct 2018 14:58:52 +0200 Subject: [PATCH] Remove CELERY_BEAT_SCHEDULE from config_local CELERY_BEAT_SCHEDULE shouldn't need any changes in config_local for production; the default should be production-ready. --- docker/4_run/config_local.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docker/4_run/config_local.py b/docker/4_run/config_local.py index d0fbd4c..9e174be 100644 --- a/docker/4_run/config_local.py +++ b/docker/4_run/config_local.py @@ -106,15 +106,6 @@ UTM_LINKS = { } } -# Disabled until we have regenerated the majority of the links. -CELERY_BEAT_SCHEDULE = { - 'regenerate-expired-links': { - 'task': 'pillar.celery.file_link_tasks.regenerate_all_expired_links', - 'schedule': 600, # every N seconds - 'args': ('gcs', 500) - }, -} - SVNMAN_REPO_URL = 'https://svn.blender.cloud/repo/' SVNMAN_API_URL = 'https://svn.blender.cloud/api/'