Merge pull request #2989 from vascop/patch-1

Sentry Redis integration enabled by default in production.
This commit is contained in:
Bruno Alla 2021-01-24 16:50:09 +00:00 committed by GitHub
commit d25e5f7de6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@ from sentry_sdk.integrations.logging import LoggingIntegration
{%- if cookiecutter.use_celery == 'y' %} {%- if cookiecutter.use_celery == 'y' %}
from sentry_sdk.integrations.celery import CeleryIntegration from sentry_sdk.integrations.celery import CeleryIntegration
{% endif %} {% endif %}
from sentry_sdk.integrations.redis import RedisIntegration
{% endif -%} {% endif -%}
from .base import * # noqa from .base import * # noqa
@ -351,9 +352,9 @@ sentry_logging = LoggingIntegration(
) )
{%- if cookiecutter.use_celery == 'y' %} {%- if cookiecutter.use_celery == 'y' %}
integrations = [sentry_logging, DjangoIntegration(), CeleryIntegration()] integrations = [sentry_logging, DjangoIntegration(), CeleryIntegration(), RedisIntegration()]
{% else %} {% else %}
integrations = [sentry_logging, DjangoIntegration()] integrations = [sentry_logging, DjangoIntegration(), RedisIntegration()]
{% endif -%} {% endif -%}
sentry_sdk.init( sentry_sdk.init(