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.
2 parents 3527ec5 + 7a38347 commit 9f1cca4Copy full SHA for 9f1cca4
sentry_sdk/tracing_utils.py
@@ -543,6 +543,10 @@ def _sample_rand(self):
543
class Baggage:
544
"""
545
The W3C Baggage header information (see https://www.w3.org/TR/baggage/).
546
+
547
+ Before mutating a `Baggage` object, calling code must check that `mutable` is `True`.
548
+ Mutating a `Baggage` object that has `mutable` set to `False` is not allowed, but
549
+ it is the caller's responsibility to enforce this restriction.
550
551
552
__slots__ = ("sentry_items", "third_party_items", "mutable")
0 commit comments