fix(tool): increase buffer size for kconfig server

This commit is contained in:
Kapil Gupta
2025-09-27 17:53:22 +05:30
parent 17f7fd5ba6
commit 8b68791996

View File

@@ -368,7 +368,7 @@ class RunTool:
p = await asyncio.create_subprocess_exec( p = await asyncio.create_subprocess_exec(
*cmd, *cmd,
env=env_copy, env=env_copy,
limit=1024 * 256, limit=1024 * 1024,
cwd=self.cwd, cwd=self.cwd,
stdout=asyncio.subprocess.PIPE, stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,