fix: show stored follower stage timings

This commit is contained in:
Codex
2026-07-03 16:18:14 +00:00
parent 6ccbf2677b
commit 528481ee26
+1 -1
View File
@@ -2148,7 +2148,7 @@ function storedFollowerTimingsForStatus(
observedSha: string | null,
): FollowerState["timings"] {
const total = totalTimingFromStored(storedTimings, phase, null, observedSha);
const sourceCommit = total?.sourceCommit ?? null;
const sourceCommit = total?.sourceCommit ?? stringOrNull(storedTimings?.sourceCommit) ?? null;
return {
budgetSeconds: follower.budgets.endToEndSeconds,
totalSeconds: total?.seconds ?? null,