feat(worker): set celery timezone to UTC

This commit is contained in:
jo 2022-03-04 19:08:53 +01:00 committed by Kyle Robbertze
parent dc7560e1df
commit 29c174b85e
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ CELERY_EVENT_QUEUE_EXPIRES = 900 # RabbitMQ x-expire after 15 minutes
CELERY_TASK_SERIALIZER = "json"
CELERY_RESULT_SERIALIZER = "json"
CELERY_ACCEPT_CONTENT = ["json"]
CELERY_TIMEZONE = "Europe/Berlin"
CELERY_TIMEZONE = "UTC"
CELERY_ENABLE_UTC = True