Skip to content

Commit e4d94a5

Browse files
committed
what is happening?
1 parent fd69f64 commit e4d94a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sentry_sdk/integrations/threading.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,10 @@ def sentry_start(self, *a, **kw):
5757
return old_start(self, *a, **kw)
5858

5959
if integration.propagate_scope:
60-
isolation_scope = sentry_sdk.get_isolation_scope().fork()
61-
current_scope = sentry_sdk.get_current_scope().fork()
60+
isolation_scope = sentry_sdk.get_isolation_scope()
61+
current_scope = sentry_sdk.get_current_scope()
62+
# isolation_scope = sentry_sdk.get_isolation_scope().fork()
63+
# current_scope = sentry_sdk.get_current_scope().fork()
6264
else:
6365
isolation_scope = None
6466
current_scope = None

0 commit comments

Comments
 (0)