Browse Source

Fix missing stdout in event handlers (#1271)

Nikhil Rao 1 year ago
parent
commit
bb96e12940
1 changed files with 1 additions and 1 deletions
  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()