mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-04 21:24:32 +02:00
Merge branch 'bugfix/confserver_out_of_subprocess_limit' into 'master'
tools: fix confserver out of limit error Closes IDFGH-7801 See merge request espressif/esp-idf!19012
This commit is contained in:
@@ -172,7 +172,7 @@ class RunTool:
|
|||||||
pass
|
pass
|
||||||
# Note: we explicitly pass in os.environ here, as we may have set IDF_PATH there during startup
|
# Note: we explicitly pass in os.environ here, as we may have set IDF_PATH there during startup
|
||||||
# limit was added for avoiding error in idf.py confserver
|
# limit was added for avoiding error in idf.py confserver
|
||||||
p = await asyncio.create_subprocess_exec(*cmd, env=env_copy, limit=1024 * 128, cwd=self.cwd, stdout=asyncio.subprocess.PIPE,
|
p = await asyncio.create_subprocess_exec(*cmd, env=env_copy, limit=1024 * 256, cwd=self.cwd, stdout=asyncio.subprocess.PIPE,
|
||||||
stderr=asyncio.subprocess.PIPE, )
|
stderr=asyncio.subprocess.PIPE, )
|
||||||
stderr_output_file = os.path.join(self.build_dir, log_dir_name, f'idf_py_stderr_output_{p.pid}')
|
stderr_output_file = os.path.join(self.build_dir, log_dir_name, f'idf_py_stderr_output_{p.pid}')
|
||||||
stdout_output_file = os.path.join(self.build_dir, log_dir_name, f'idf_py_stdout_output_{p.pid}')
|
stdout_output_file = os.path.join(self.build_dir, log_dir_name, f'idf_py_stdout_output_{p.pid}')
|
||||||
|
Reference in New Issue
Block a user