浏览代码

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()