fix(admin): Files-tab banner refreshes sync markers without page reload (CLEAN-61) - #58
Merged
Merged
Conversation
…ge reload (CLEAN-61) The status stream only emits on pod events, so a Sync never produces a frame with the fresh lastSyncAt — and the CLEAN-59 live-first `??` let the stale stream row shadow any refetch forever, making banner updates depend on a coincidental pod event. Sync now refetches the agent row alongside the file list, and marker timestamps resolve freshest-wins (statuses stay live-first). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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.
Summary
CLEAN-61 — after pressing Sync the banner's "last sync" (and marker times) updated only on page reload, sometimes updating by luck. Two compounding causes:
lastSyncAtnever rides the stream. Whether the banner updated depended on a coincidental pod event / drift sweep frame — hence the intermittent behavior.??let the stale (non-null) stream row shadow any refetched value forever.Fix (frontend-only):
onSyncrefetches the agent row alongside the file list.lastPullAt/lastSyncAt) resolve freshest-wins (max of live vs fetched); statuses remain live-first as before.Test plan
admin:nuxt typecheckgreen (client regenerated from this branch's api — in sync with main)🤖 Generated with Claude Code