feat(web-probe): detect trace order and card timing drift (#737)

Co-authored-by: Codex <codex@noreply.local>
This commit is contained in:
Lyon
2026-06-23 15:31:08 +08:00
committed by GitHub
parent f92dbce91f
commit 2b89905a73
2 changed files with 890 additions and 1 deletions
+1 -1
View File
@@ -2966,7 +2966,7 @@ function withNodeRuntimeTriggerRendered(result: Record<string, unknown>, scoped:
const warning = record(result.warning ?? pipelineWait.warning);
const postFlush = record(result.postFlush);
const gitMirror = record(result.gitMirror);
const gitMirrorSummary = record(gitMirror.statusSummary ?? gitMirror.afterSummary ?? gitMirror.beforeSummary ?? gitMirror.summary);
const gitMirrorSummary = record(postFlush.afterSummary ?? postFlush.beforeSummary ?? gitMirror.statusSummary ?? gitMirror.afterSummary ?? gitMirror.beforeSummary ?? gitMirror.summary);
const refresh = record(result.refresh);
const create = record(result.create);
const next = record(result.next);