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 1e5b618 commit 6ee997fCopy full SHA for 6ee997f
sentry_sdk/integrations/starlite.py
@@ -1,3 +1,5 @@
1
+from copy import deepcopy
2
+
3
import sentry_sdk
4
from sentry_sdk.consts import OP
5
from sentry_sdk.integrations import DidNotEnable, Integration
@@ -237,7 +239,7 @@ def event_processor(event, _):
237
239
238
240
event.update(
241
{
- "request": request_info,
242
+ "request": deepcopy(request_info),
243
"transaction": tx_name,
244
"transaction_info": tx_info,
245
}
0 commit comments