Skip to content

Commit

Permalink
chore:Remove deprecated pytz usage and setup Django in Celery.
Browse files Browse the repository at this point in the history
This commit removes the USE_DEPRECATED_PYTZ setting from local.py as it is no longer necessary. Additionally, it ensures Django is properly set up in the Celery configuration, which may prevent potential issues with accessing Django models or settings within Celery tasks.
  • Loading branch information
hareshkainthdbt committed Dec 6, 2024
1 parent 80e9f66 commit 82b7ad9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions fbr/config/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
from celery.schedules import crontab
from dbt_copilot_python.celery_health_check import healthcheck

import django

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.local")
django.setup()

celery_app = Celery("fbr_celery")

Expand Down
2 changes: 0 additions & 2 deletions fbr/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
"cache",
]

USE_DEPRECATED_PYTZ = True

INSTALLED_APPS = BASE_APPS + INSTALLED_APPS # noqa

0 comments on commit 82b7ad9

Please sign in to comment.