fix: frontend process output streaming stuck due to incorrect output

This commit is contained in:
Daulet Amirkhanov 2025-10-06 14:18:39 +01:00
parent ee45afed42
commit 263a8f4376

View file

@ -627,7 +627,6 @@ def start_ui(
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
shell=True,
)
else:
@ -637,7 +636,6 @@ def start_ui(
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
preexec_fn=os.setsid if hasattr(os, "setsid") else None,
)