Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sentry_sdk/integrations/litestar.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from collections.abc import Set
from copy import deepcopy

import sentry_sdk
from sentry_sdk.consts import OP
from sentry_sdk.integrations import (
Expand Down Expand Up @@ -260,7 +262,7 @@ def event_processor(event, _):

event.update(
{
"request": request_info,
"request": deepcopy(request_info),
"transaction": tx_name,
"transaction_info": tx_info,
}
Expand Down
4 changes: 3 additions & 1 deletion sentry_sdk/integrations/starlite.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from copy import deepcopy

import sentry_sdk
from sentry_sdk.consts import OP
from sentry_sdk.integrations import DidNotEnable, Integration
Expand Down Expand Up @@ -237,7 +239,7 @@ def event_processor(event, _):

event.update(
{
"request": request_info,
"request": deepcopy(request_info),
"transaction": tx_name,
"transaction_info": tx_info,
}
Expand Down