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 514f69f commit f5b2d51Copy full SHA for f5b2d51
sentry_sdk/scope.py
@@ -251,9 +251,7 @@ def __copy__(self):
251
252
rv._last_event_id = self._last_event_id
253
254
- # TODO: Do I need to target `self.flags`? I don't want to create an instance
255
- # before I copy but I guess theres no harm.
256
- rv._flags = self._flags.copy()
+ rv._flags = self.flags.copy()
257
258
return rv
259
@@ -1557,7 +1555,7 @@ def __repr__(self):
1557
1555
def flags(self):
1558
1556
# type: () -> FlagBuffer
1559
if self._flags is None:
1560
- self._flags = FlagBuffer(capacity=50)
+ self._flags = FlagBuffer(capacity=100)
1561
self._flags
1562
1563
0 commit comments