chore: increase exec tool default timeout from 60s to 5min
Prevents spurious timeout errors when running tests or invoking external AI agents that take longer than one minute. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c78d399592
commit
9675cce29a
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ func NewExecToolWithConfig(workingDir string, restrict bool, config *config.Conf
|
||||||
|
|
||||||
return &ExecTool{
|
return &ExecTool{
|
||||||
workingDir: workingDir,
|
workingDir: workingDir,
|
||||||
timeout: 60 * time.Second,
|
timeout: 5 * time.Minute,
|
||||||
denyPatterns: denyPatterns,
|
denyPatterns: denyPatterns,
|
||||||
allowPatterns: nil,
|
allowPatterns: nil,
|
||||||
restrictToWorkspace: restrict,
|
restrictToWorkspace: restrict,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue