Fix stale published run status - #3570
Merged
AbigailDeng merged 2 commits intoSep 2, 2026
Merged
Conversation
AbigailDeng
changed the base branch from
dev
to
feat/2026-08-04_workflow-activity-vnext
September 2, 2026 06:01
AbigailDeng
merged commit Sep 2, 2026
4b2878e
into
feat/2026-08-04_workflow-activity-vnext
12 of 13 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
A published run can be completed in its run audit while the member run catalog still returns the older
runningsummary. The selected run then showedCompletedin the detail pane butRunningin the published-runs list.Solution
Use the audit summary only when it belongs to the currently selected
runId, and use that summary to replace the matching catalog item. This keeps the detail pane and left-hand run list on the same current status while avoiding stale data from a previous route selection.The branch is merged with
feat/2026-08-04_workflow-activity-vnext, which is also the PR base.Local verification
pnpm --dir apps/aevatar-console-web exec jest src/pages/runtime-published-runs/index.test.tsx --runInBand(8 passed)pnpm --dir apps/aevatar-console-web exec jest --findRelatedTests src/pages/runtime-published-runs/MemberPublishedRunsReplay.tsx --runInBand(8 passed)bash tools/ci/test_stability_guards.sh(passed)pnpm --dir apps/aevatar-console-web exec biome lint --only=suspicious/noExplicitAny src/pages/runtime-published-runs/MemberPublishedRunsReplay.tsx src/pages/runtime-published-runs/index.test.tsx(passed)noArrayIndexKey, andnoNonNullAssertion; no whole-file formatting was appliedgit diff origin/feat/2026-08-04_workflow-activity-vnext --check -- apps/aevatar-console-web/src/pages/runtime-published-runs/MemberPublishedRunsReplay.tsx apps/aevatar-console-web/src/pages/runtime-published-runs/index.test.tsx(passed)