Fix missing stdout in event handlers (#1271)

This commit is contained in:
Nikhil Rao 2023-06-28 16:26:09 -07:00 committed by GitHub
parent cd63297fe4
commit bb96e12940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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