See #272: clean transcoding files task

This commit is contained in:
Eliot Berriot 2018-10-24 19:44:31 +02:00
parent 2fe1e7c950
commit 8489c79c89
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
5 changed files with 68 additions and 2 deletions

View file

@ -412,7 +412,12 @@ CELERY_BEAT_SCHEDULE = {
"task": "federation.clean_music_cache",
"schedule": crontab(hour="*/2"),
"options": {"expires": 60 * 2},
}
},
"music.clean_transcoding_cache": {
"task": "music.clean_transcoding_cache",
"schedule": crontab(hour="*"),
"options": {"expires": 60 * 2},
},
}
JWT_AUTH = {