fix(ear): messages can't be displayed - WPB-24136 🍒#4477
Open
github-actions[bot] wants to merge 2 commits intodevelopfrom
Open
fix(ear): messages can't be displayed - WPB-24136 🍒#4477github-actions[bot] wants to merge 2 commits intodevelopfrom
github-actions[bot] wants to merge 2 commits intodevelopfrom
Conversation
Co-authored-by: David-Henner <david.henner@wire.com> Co-authored-by: KaterinaWire <57407805+KaterinaWire@users.noreply.github.com> Co-authored-by: François Benaiteau <netbe@users.noreply.github.com>
zenkins
approved these changes
Mar 24, 2026
Collaborator
zenkins
left a comment
There was a problem hiding this comment.
✅ Auto-approved cherry-pick PR 🍒.
|
Contributor
Author
Test Results 4 files 519 suites 5m 46s ⏱️ Results for commit 1bee65b. Summary: workflow run #23598716909 |
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.


This PR was automatically cherry-picked based on the following PR:
Original PR description:
This PR was automatically cherry-picked based on the following PR:
Original PR description:
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].