fix(tools): use kill_on_drop for ClaudeCodeTool subprocess timeout

This commit is contained in:
argenis de la rosa 2026-03-21 07:44:31 -04:00 committed by Roman Tataurov
parent 26b5e541f0
commit 8e90299777
No known key found for this signature in database
GPG Key ID: 70A51EF3185C334B

View File

@ -8,7 +8,7 @@ use std::sync::Arc;
use std::time::Duration;
use tokio::process::Command;
/// Environment variables safe to pass to the claude subprocess.
/// Environment variables safe to pass through to the `claude` subprocess.
const SAFE_ENV_VARS: &[&str] = &[
"PATH", "HOME", "TERM", "LANG", "LC_ALL", "LC_CTYPE", "USER", "SHELL", "TMPDIR",
];