uktrade/directory-sso

View on GitHub
conf/celery.py

Summary

Maintainability
A
0 mins
Test Coverage
from __future__ import absolute_import, unicode_literals

import os
from ssl import CERT_NONE

from celery import Celery
from django.conf import settings

from dbt_copilot_python.celery_health_check import healthcheck


# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conf.settings')

app = Celery('api')

# Using a string here means the worker don't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
#   should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')

if settings.FEATURE_REDIS_USE_SSL:
    ssl_conf = {
        'ssl_cert_reqs': CERT_NONE,
        'ssl_ca_certs': None,
        'ssl_certfile': None,
        'ssl_keyfile': None,
    }  # pragma: no cover
    app.conf.broker_use_ssl = ssl_conf  # pragma: no cover
    app.conf.redis_backend_use_ssl = ssl_conf  # pragma: no cover

# Load task modules from all registered Django app configs.
app.autodiscover_tasks()

# Set up healthcheck.
app = healthcheck.setup(app)