File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,15 @@ breadcrumbs manually:
88
88
"message": "hi"
89
89
})
90
90
91
+ ### Concurrency
92
+
93
+ * Sentry-Python currently does not support gevent-based setups.
94
+ * On `` init `` , Sentry-Python spawns a thread on its own. That means if you use
95
+ `` uwsgi `` , you currently need to enable threads.
96
+ * On Python 3.7, Sentry-Python supports and automatically uses `` ContextVars `` .
97
+ This should effectively enable Sentry-Python to work with `` asyncio `` under
98
+ that Python version.
99
+
91
100
## Integrations
92
101
93
102
Head over to [ the other pages] ( ./docs/ ) to check out integrations, which use
Original file line number Diff line number Diff line change @@ -372,8 +372,6 @@ def to_string(value):
372
372
except ImportError :
373
373
from threading import local
374
374
375
- _nothing = object ()
376
-
377
375
class ContextVar (object ):
378
376
# Super-limited impl of ContextVar
379
377
You can’t perform that action at this time.
0 commit comments