From 7bb31832d9b263380d5e80f8bd3466fd562e3d41 Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Sat, 14 Mar 2026 09:08:51 +0000 Subject: [PATCH] fix(t3504): clarify 4-hour max runtime comment --- .agents/scripts/supervisor-archived/pulse.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/scripts/supervisor-archived/pulse.sh b/.agents/scripts/supervisor-archived/pulse.sh index fb8dc6aeb8..b844104ebe 100755 --- a/.agents/scripts/supervisor-archived/pulse.sh +++ b/.agents/scripts/supervisor-archived/pulse.sh @@ -2271,8 +2271,8 @@ cmd_pulse() { # t1196: Per-task-type hang timeout via get_task_timeout() — replaces single global value. # Absolute max runtime: kill workers regardless of log activity. # Prevents runaway workers (e.g., shellcheck on huge files) from accumulating - # and exhausting system memory. Default 4 hours. - local worker_max_runtime_seconds="${SUPERVISOR_WORKER_MAX_RUNTIME:-14400}" # 4 hour default (t314: restored after merge overwrite) + # and exhausting system memory. Default 4 hours (14400s). + local worker_max_runtime_seconds="${SUPERVISOR_WORKER_MAX_RUNTIME:-14400}" # Default 4 hours (t314: restored after merge overwrite) if [[ -d "$SUPERVISOR_DIR/pids" ]]; then for pid_file in "$SUPERVISOR_DIR/pids"/*.pid; do