Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 0a3d60e

Browse files
committed
flask 1.0 update
threaded is now True by default in flask 1.0 and `threaded=True` can’t be set if `processes>1`
1 parent c992c14 commit 0a3d60e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/IntegrationTests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def run():
5555
dash.run_server(
5656
port=8050,
5757
debug=False,
58-
processes=4
58+
processes=4,
59+
threaded=False
5960
)
6061

6162
# Run on a separate process so that it doesn't block

0 commit comments

Comments
 (0)