From 8b68791996f6fb448d491ad51e4d91089820383e Mon Sep 17 00:00:00 2001 From: Kapil Gupta Date: Sat, 27 Sep 2025 17:53:22 +0530 Subject: [PATCH] fix(tool): increase buffer size for kconfig server --- tools/idf_py_actions/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_py_actions/tools.py b/tools/idf_py_actions/tools.py index de6c236dd3..c7aa88236f 100644 --- a/tools/idf_py_actions/tools.py +++ b/tools/idf_py_actions/tools.py @@ -368,7 +368,7 @@ class RunTool: p = await asyncio.create_subprocess_exec( *cmd, env=env_copy, - limit=1024 * 256, + limit=1024 * 1024, cwd=self.cwd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,