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 ab96196 commit 52e1380Copy full SHA for 52e1380
.gitignore
@@ -14,6 +14,8 @@ __pycache__/
14
# virtualenv
15
env*/
16
venv/
17
+.venv/
18
+.env/
19
20
# codecov / coverage
21
.coverage
tests/utils.py
@@ -21,6 +21,9 @@ def get_mock_server_mode() -> str:
"""
22
mode = os.environ.get("BOLT_PYTHON_MOCK_SERVER_MODE")
23
if mode is None:
24
- return "multiprocessing"
+ # We used to use "multiprocessing"" for macOS until Big Sur 11.1
25
+ # Since 11.1, the "multiprocessing" mode started failing a lot...
26
+ # Therefore, we switched the default mode back to "threading".
27
+ return "threading"
28
else:
29
return mode
0 commit comments