refactor(shell): use finally block to reap zombie processes on timeoutx

This commit is contained in:
Eric Yang
2026-03-22 19:29:33 +00:00
committed by Xubin Ren
parent dbcc7cb539
commit e2e1c9c276

View File

@@ -116,7 +116,7 @@ class ExecTool(Tool):
try:
os.waitpid(process.pid, os.WNOHANG)
except (ProcessLookupError, ChildProcessError):
pass
logger.debug("Process already reaped or not found: {}", e)
return f"Error: Command timed out after {effective_timeout} seconds"
output_parts = []