ingest: 900s per-segment timeout — busy-hour tape outgrew 300s over ssh

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
jaxperro
2026-07-19 13:43:05 -04:00
parent 16a2393d9e
commit 006d79ac18
+1 -1
View File
@@ -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