We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bf4b7f commit b819059Copy full SHA for b819059
2 files changed
sentry_sdk/scope.py
@@ -1553,7 +1553,7 @@ def _apply_user_attributes_to_telemetry(
1553
if isinstance(telemetry, dict):
1554
attributes = telemetry["attributes"]
1555
else:
1556
- attributes = telemetry.attributes
+ attributes = telemetry._attributes
1557
1558
if not should_send_default_pii() or self._user is None:
1559
return
sentry_sdk/traces.py
@@ -27,7 +27,7 @@ class StreamedSpan:
27
28
__slots__ = (
29
"name",
30
- "attributes",
+ "_attributes",
31
"_trace_id",
32
)
33
0 commit comments