Skip to content

Commit

Permalink
chore:set Celery timezone to Europe/London
Browse files Browse the repository at this point in the history
Configure the Celery application to use the 'Europe/London' timezone to ensure consistent task scheduling and execution times. This change helps align our scheduling with the expected regional time settings.
  • Loading branch information
hareshkainthdbt committed Dec 6, 2024
1 parent 048c3e7 commit 149bd8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fbr/config/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

celery_app.autodiscover_tasks()

celery_app.conf.timezone = "Europe/London"

celery_app = healthcheck.setup(celery_app)

celery_app.conf.beat_schedule = {
Expand Down

0 comments on commit 149bd8b

Please sign in to comment.