mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 07:20:22 +00:00
fix(browser): prevent stdio buffer blocking in Docker environments
This commit is contained in:
committed by
Peter Steinberger
parent
69217164f7
commit
5e64265537
@@ -324,7 +324,7 @@ export async function launchOpenClawChrome(
|
||||
userDataDir,
|
||||
});
|
||||
return spawn(exe.path, args, {
|
||||
stdio: "pipe",
|
||||
stdio: ["ignore", "ignore", "ignore"],
|
||||
env: {
|
||||
...process.env,
|
||||
// Reduce accidental sharing with the user's env.
|
||||
|
||||
Reference in New Issue
Block a user