From 006d79ac18c2b2692fc8510bc4c1c310208453ac Mon Sep 17 00:00:00 2001 From: jaxperro Date: Sun, 19 Jul 2026 13:43:05 -0400 Subject: [PATCH] =?UTF-8?q?ingest:=20900s=20per-segment=20timeout=20?= =?UTF-8?q?=E2=80=94=20busy-hour=20tape=20outgrew=20300s=20over=20ssh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- recorder/ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recorder/ingest.py b/recorder/ingest.py index eb9caa43..536e6b95 100644 --- a/recorder/ingest.py +++ b/recorder/ingest.py @@ -25,7 +25,7 @@ FLYCTL = shutil.which("flyctl") or "/opt/homebrew/bin/flyctl" def box(cmd): r = subprocess.run([FLYCTL, "ssh", "console", "-a", APP, "-C", f"bash -c '{cmd}'"], capture_output=True, text=True, - timeout=300) + timeout=900) # busy-hour segments (~15MB gz) outgrow 300s over ssh return r.stdout