fix(ear): messages can't be displayed - WPB-24136#4450
Merged
David-Henner merged 14 commits intorelease/cycle-4.16from Mar 24, 2026
Merged
fix(ear): messages can't be displayed - WPB-24136#4450David-Henner merged 14 commits intorelease/cycle-4.16from
David-Henner merged 14 commits intorelease/cycle-4.16from
Conversation
johnxnguyen
reviewed
Mar 18, 2026
WireDomain/Sources/WireDomain/Synchronization/IncrementalSync.swift
Outdated
Show resolved
Hide resolved
Contributor
Test Results 14 files 1 112 suites 11m 15s ⏱️ For more details on these failures, see this check. Results for commit 3b9e148. ♻️ This comment has been updated with latest results. Summary: workflow run #23488867210 |
samwyndham
reviewed
Mar 18, 2026
johnxnguyen
approved these changes
Mar 18, 2026
samwyndham
approved these changes
Mar 19, 2026
6545bce to
50c6a90
Compare
|
zenkins
pushed a commit
that referenced
this pull request
Mar 24, 2026
Co-authored-by: KaterinaWire <57407805+KaterinaWire@users.noreply.github.com> Co-authored-by: François Benaiteau <netbe@users.noreply.github.com>
3 tasks
3 tasks
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.


Issue
Sometimes, with EAR enabled, after opening the app, some messages can't be displayed.
Cause
Messages couldn't be encrypted at rest because the database key was missing.
This happens because the app went to the background and locked the database (nullified the database key from cache) while the incremental sync was running and processing messages.
When this happens, we cancel the sync
wire-ios/wire-ios-sync-engine/Source/UserSession/ZMUserSession/ZMUserSession+LifeCycle.swift
Line 46 in 48209b1
However, the cancellation doesn't get propagated properly from the suspend method to the inner sync task. Hence, the sync continues and tries to process messages while the database key is nil
Solution
NonReentrantTaskManagerandExpiringActivityAdd aTask.checkCancellationbefore processing individual events in the incremental syncTesting
Checklist
[WPB-XXX].