Skip to content

Commit a2444e6

Browse files
committed
.
1 parent ce6590a commit a2444e6

File tree

1 file changed

+1
-1
lines changed
  • sentry_sdk/integrations/django

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/django/asgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ async def sentry_patched_asgi_handler(self, scope, receive, send):
110110
if modern_django_asgi_support:
111111
old_create_request = cls.create_request
112112

113-
@functools.wrap(old_create_request)
113+
@functools.wraps(old_create_request)
114114
@ensure_integration_enabled(DjangoIntegration, old_create_request)
115115
def sentry_patched_create_request(self, *args, **kwargs):
116116
# type: (Any, *Any, **Any) -> Any

0 commit comments

Comments
 (0)