mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-03 18:40:59 +02:00
fix(tool): increase buffer size for kconfig server
This commit is contained in:
@@ -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,
|
||||||
|
Reference in New Issue
Block a user