aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-12-19 19:26:24 +0200
committerGravatar GitHub <[email protected]>2020-12-19 19:26:24 +0200
commit826ff04368756fcf0b6d5c41bef40e8f193281bf (patch)
treea44367d8e4c14200cf25a5cffd9e3c2ab3519116 /bot
parentAdd release tag to Sentry SDK initialization (diff)
Remove aiohttp integration from Sentry
Diffstat (limited to 'bot')
-rw-r--r--bot/__main__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index ee7710e7..da0ff439 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -1,7 +1,6 @@
import logging
import sentry_sdk
-from sentry_sdk.integrations.aiohttp import AioHttpIntegration
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.redis import RedisIntegration
@@ -20,8 +19,7 @@ sentry_sdk.init(
dsn=Client.sentry_dsn,
integrations=[
sentry_logging,
- RedisIntegration(),
- AioHttpIntegration()
+ RedisIntegration()
],
release=f"pydis-sir-lancebot@{GIT_SHA}"
)