This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 6b69dc42dc fix: add --without-threads flag to Flask dev server for 
DuckDB compatibility (#34907)
6b69dc42dc is described below

commit 6b69dc42dcf7af1a24b35d10a3f5325330e93916
Author: Maxime Beauchemin <maximebeauche...@gmail.com>
AuthorDate: Fri Aug 29 12:29:15 2025 -0700

    fix: add --without-threads flag to Flask dev server for DuckDB 
compatibility (#34907)
    
    Co-authored-by: Claude <nore...@anthropic.com>
---
 docker/docker-bootstrap.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/docker-bootstrap.sh b/docker/docker-bootstrap.sh
index 2f466fea84..04709396cf 100755
--- a/docker/docker-bootstrap.sh
+++ b/docker/docker-bootstrap.sh
@@ -72,7 +72,7 @@ case "${1}" in
     ;;
   app)
     echo "Starting web app (using development server)..."
-    flask run -p $PORT --reload --debugger --host=0.0.0.0
+    flask run -p $PORT --reload --debugger --without-threads --host=0.0.0.0
     ;;
   app-gunicorn)
     echo "Starting web app..."

Reply via email to