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 3c39268 commit d5e0680Copy full SHA for d5e0680
sentry_sdk/integrations/aiohttp.py
@@ -9,7 +9,7 @@
9
from sentry_sdk.utils import capture_internal_exceptions, event_from_exception
10
11
import asyncio
12
-from aiohttp.web import Application, HTTPError
+from aiohttp.web import Application, HTTPException
13
14
15
class AioHttpIntegration(Integration):
@@ -42,7 +42,7 @@ async def inner():
42
43
try:
44
response = await old_handle(self, request)
45
- except HTTPError:
+ except HTTPException:
46
raise
47
except Exception:
48
reraise(*_capture_exception(hub))
0 commit comments