We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71eccf9 commit 104d507Copy full SHA for 104d507
1 file changed
utils/sentry.py
@@ -3,6 +3,7 @@
3
import functools
4
import sentry_sdk
5
6
+from sentry_sdk.integrations.httpx import HttpxIntegration
7
from sentry_sdk.integrations.logging import LoggingIntegration
8
from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
9
@@ -21,6 +22,7 @@
21
22
event_level=logging.ERROR,
23
),
24
SqlalchemyIntegration(),
25
+ HttpxIntegration(),
26
],
27
)
28
0 commit comments