From 861aa04690b74991b42646c5cca882116eea17c4 Mon Sep 17 00:00:00 2001 From: oudecheng <13802883547@139.com> Date: Tue, 26 May 2026 08:52:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=B0=86=20TaskConfig=20=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E6=94=B9=E4=B8=BA60=E5=88=86=E9=92=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - default_task_max_execution_secs: 1200 -> 3600 (20分钟 -> 60分钟) - default_task_explore_max_execution_secs: 600 -> 3600 (10分钟 -> 60分钟) 确保配置层默认值与代码层一致。 Co-Authored-By: Claude Opus 4.7 --- src/config/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index f9046f8..fe46693 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -228,11 +228,11 @@ fn default_task_enabled() -> bool { } fn default_task_max_execution_secs() -> u64 { - 1200 // 20分钟 + 3600 // 60分钟 } fn default_task_explore_max_execution_secs() -> u64 { - 600 // 10分钟 + 3600 // 60分钟 } fn default_task_ttl_hours() -> u64 {