From ee71d7713d18ac38fa6963723c0ad402412a1fe4 Mon Sep 17 00:00:00 2001 From: CD Date: Fri, 6 Mar 2026 22:27:21 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A6=AC=EB=B7=B0=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=20cutoff=20600=EC=B4=88=EB=A1=9C=20=ED=99=95=EC=9E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/task_pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/task_pipeline.py b/core/task_pipeline.py index 2883382..316402f 100644 --- a/core/task_pipeline.py +++ b/core/task_pipeline.py @@ -136,9 +136,9 @@ class TaskPipeline: for i, output in enumerate(code_outputs): agent_reports.append(f"--- Agent {i+1} 보고 ---\n{output[:1000]}") - # 최근 변경된 파일 읽기 (60초 이내) + # 최근 변경된 파일 읽기 (10분 이내) recent_files = [] - cutoff = _time.time() - 60 + cutoff = _time.time() - 600 project_root = Path(self.project_path) skip_dirs = {".git", "__pycache__", "node_modules", ".venv", "venv"}