Browse Source

Fix missing stdout in event handlers (#1271)

Nikhil Rao 1 năm trước cách đây
mục cha
commit
bb96e12940
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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()