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 c019d6d commit c43a3b4Copy full SHA for c43a3b4
sentry_sdk/integrations/asgi.py
@@ -7,7 +7,7 @@
7
import asyncio
8
import inspect
9
from copy import deepcopy
10
-from functools import lru_cache, partial
+from functools import partial
11
12
import sentry_sdk
13
from sentry_sdk.api import continue_trace
@@ -66,7 +66,6 @@ def _capture_exception(exc, mechanism_type="asgi"):
66
sentry_sdk.capture_event(event, hint=hint)
67
68
69
-@lru_cache(maxsize=5)
70
def _looks_like_asgi3(app):
71
# type: (Any) -> bool
72
"""
0 commit comments