2 Commits

Author SHA1 Message Date
b165c11cc3 Disable the flamenco-resume-job-archiving celery task until we have tested the job manually first 2018-09-19 17:35:12 +02:00
22bd1a1a04 Added celery task for resuming archiving flamenco jobs that got stuck in status "archiving".
Jobs are considered stuck if they are in status "archiving" and hasn't been updated in a day.
2018-09-19 14:02:28 +02:00

View File

@@ -113,6 +113,10 @@ CELERY_BEAT_SCHEDULE = {
'schedule': 600, # every N seconds 'schedule': 600, # every N seconds
'args': ('gcs', 500) 'args': ('gcs', 500)
}, },
# 'flamenco-resume-job-archiving': {
# 'task': 'flamenco.celery.job_archival.resume_job_archiving',
# 'schedule': 3600, # every N seconds
# },
} }
SVNMAN_REPO_URL = 'https://svn.blender.cloud/repo/' SVNMAN_REPO_URL = 'https://svn.blender.cloud/repo/'