We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4956e74 commit 013bb99Copy full SHA for 013bb99
main/asgi.py
@@ -8,6 +8,7 @@
8
from channels.routing import ProtocolTypeRouter, URLRouter
9
from django.core.asgi import get_asgi_application
10
from django.urls import re_path
11
+from sentry_sdk.integrations.asgi import SentryAsgiMiddleware
12
13
from main.middleware.configs import HTTP_MIDDLEWARE
14
from main.middleware.util import apply_middleware
@@ -33,3 +34,5 @@
33
34
),
35
}
36
)
37
+
38
+application = SentryAsgiMiddleware(application)
0 commit comments