mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-06 05:00:18 +03:00
test
This commit is contained in:
parent
c93729712d
commit
f50f1ea810
|
@ -1,4 +1,6 @@
|
||||||
# ruff: noqa: E501
|
# ruff: noqa: E501
|
||||||
|
import ssl
|
||||||
|
|
||||||
{% if cookiecutter.use_sentry == 'y' -%}
|
{% if cookiecutter.use_sentry == 'y' -%}
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -49,7 +51,7 @@ CACHES = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
import ssl # noqa: E402
|
|
||||||
REDIS_URL = env("REDIS_TLS_URL")
|
REDIS_URL = env("REDIS_TLS_URL")
|
||||||
CELERY_REDIS_BACKEND_USE_SSL = {"ssl_cert_reqs": ssl.CERT_NONE}
|
CELERY_REDIS_BACKEND_USE_SSL = {"ssl_cert_reqs": ssl.CERT_NONE}
|
||||||
CELERY_BROKER_USE_SSL = {"ssl_cert_reqs": ssl.CERT_NONE}
|
CELERY_BROKER_USE_SSL = {"ssl_cert_reqs": ssl.CERT_NONE}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user