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.
This commit is contained in:
2018-10-10 14:58:52 +02:00
parent d2815acd80
commit a674de4db5

View File

@@ -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_REPO_URL = 'https://svn.blender.cloud/repo/'
SVNMAN_API_URL = 'https://svn.blender.cloud/api/' SVNMAN_API_URL = 'https://svn.blender.cloud/api/'