ソースを参照

Fix missing stdout in event handlers (#1271)

Nikhil Rao 1 年間 前
コミット
bb96e12940
1 ファイル変更1 行追加1 行削除
  1. 1 1
      reflex/utils/exec.py

+ 1 - 1
reflex/utils/exec.py

@@ -133,7 +133,7 @@ def run_backend(
         "--reload-exclude",
         f"'{constants.WEB_DIR}/*'",
     ]
-    process = new_process(cmd)
+    process = subprocess.Popen(cmd)
 
     try:
         process.wait()