Skip to content
Snippets Groups Projects
Verified Commit 13a1c6da authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed #487: typos in scheduled tasks configuration

parent 44ccd483
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ api/media ...@@ -72,7 +72,7 @@ api/media
api/staticfiles api/staticfiles
api/static api/static
api/.pytest_cache api/.pytest_cache
api/celerybeat-*
# Front # Front
oldfront/node_modules/ oldfront/node_modules/
front/static/translations front/static/translations
......
...@@ -344,9 +344,9 @@ CELERY_BROKER_URL = env( ...@@ -344,9 +344,9 @@ CELERY_BROKER_URL = env(
# Your common stuff: Below this line define 3rd party library settings # Your common stuff: Below this line define 3rd party library settings
CELERY_TASK_DEFAULT_RATE_LIMIT = 1 CELERY_TASK_DEFAULT_RATE_LIMIT = 1
CELERY_TASK_TIME_LIMIT = 300 CELERY_TASK_TIME_LIMIT = 300
CELERYBEAT_SCHEDULE = { CELERY_BEAT_SCHEDULE = {
"federation.clean_music_cache": { "federation.clean_music_cache": {
"task": "funkwhale_api.federation.tasks.clean_music_cache", "task": "federation.clean_music_cache",
"schedule": crontab(hour="*/2"), "schedule": crontab(hour="*/2"),
"options": {"expires": 60 * 2}, "options": {"expires": 60 * 2},
} }
......
Fixed typos in scheduled tasks configuration (#487)
...@@ -55,7 +55,7 @@ services: ...@@ -55,7 +55,7 @@ services:
links: links:
- postgres - postgres
- redis - redis
command: celery -A funkwhale_api.taskapp worker -l debug command: celery -A funkwhale_api.taskapp worker -l debug -B
environment: environment:
- "FUNKWHALE_HOSTNAME=${FUNKWHALE_HOSTNAME-localhost}" - "FUNKWHALE_HOSTNAME=${FUNKWHALE_HOSTNAME-localhost}"
- "FUNKWHALE_HOSTNAME_SUFFIX=funkwhale.test" - "FUNKWHALE_HOSTNAME_SUFFIX=funkwhale.test"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment