fix(sync): propagate settings decode errors instead of silently skipping#1143
Merged
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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
SyncCoordinator.applySettingsData(_:for:)is nowthrowsand lets decode failures propagate asSyncDecodeError.decodeFailure(field:underlying:). The eight category branches (general, appearance, editor, data grid, history, tabs, keyboard, AI) drop the per-branchif let settings = try? decoder.decode(...) { ... }pattern in favor of a singletryinside a shareddo/catch.applyRemoteSettings(_:)wraps the call indo/catchand logs the failing record name + category + error, then skips the record.Removes 32 lines of
if let try?boilerplate while making the failure path observable.Why this matters
This is bug B3 from the full-app audit. Same anti-pattern as #1141 (B2), one layer up. A settings record written by a newer schema version would deserialize to nil, the
ifbody would be skipped, and the user would think their settings synced when they hadn't: no log, no error, no UI signal. After this PR the failure is logged with the failing category name, and the record stays unapplied so a future build can pick it up.Test plan
settingsJsonblob for one of the eight categories, run a pull, confirm the log lineSkipping remote settings ... (general): Sync record decode failed for general: ...and that local settings are unchanged.