From 263a8f4376f94dcb52081b9756289435be067f38 Mon Sep 17 00:00:00 2001 From: Daulet Amirkhanov Date: Mon, 6 Oct 2025 14:18:39 +0100 Subject: [PATCH] fix: frontend process output streaming stuck due to incorrect output --- cognee/api/v1/ui/ui.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cognee/api/v1/ui/ui.py b/cognee/api/v1/ui/ui.py index f22a1f00b..438195990 100644 --- a/cognee/api/v1/ui/ui.py +++ b/cognee/api/v1/ui/ui.py @@ -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, )