Fixed #487: typos in scheduled tasks configuration

environments/review-front-funk-6vs0zq/deployments/32
Eliot Berriot 2018-08-19 16:22:14 +02:00
rodzic 44ccd483ca
commit 13a1c6daac
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
4 zmienionych plików z 5 dodań i 4 usunięć

2
.gitignore vendored
Wyświetl plik

@ -72,7 +72,7 @@ api/media
api/staticfiles
api/static
api/.pytest_cache
api/celerybeat-*
# Front
oldfront/node_modules/
front/static/translations

Wyświetl plik

@ -344,9 +344,9 @@ CELERY_BROKER_URL = env(
# Your common stuff: Below this line define 3rd party library settings
CELERY_TASK_DEFAULT_RATE_LIMIT = 1
CELERY_TASK_TIME_LIMIT = 300
CELERYBEAT_SCHEDULE = {
CELERY_BEAT_SCHEDULE = {
"federation.clean_music_cache": {
"task": "funkwhale_api.federation.tasks.clean_music_cache",
"task": "federation.clean_music_cache",
"schedule": crontab(hour="*/2"),
"options": {"expires": 60 * 2},
}

Wyświetl plik

@ -0,0 +1 @@
Fixed typos in scheduled tasks configuration (#487)

Wyświetl plik

@ -55,7 +55,7 @@ services:
links:
- postgres
- redis
command: celery -A funkwhale_api.taskapp worker -l debug
command: celery -A funkwhale_api.taskapp worker -l debug -B
environment:
- "FUNKWHALE_HOSTNAME=${FUNKWHALE_HOSTNAME-localhost}"
- "FUNKWHALE_HOSTNAME_SUFFIX=funkwhale.test"