Skip to content

Commit

Permalink
Merge pull request #91 from uktrade/feature/resolve-celery
Browse files Browse the repository at this point in the history
Remove deprecated pytz usage and refactor Celery configuration
  • Loading branch information
hareshkainthdbt authored Dec 7, 2024
2 parents 4390ea6 + 82b7ad9 commit 79bba4a
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 79bba4a

Please sign in to comment.