Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions proto/mls/database/task.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ message Task {
PullInDeadline pull_in_deadline = 4;
KpRotation kp_rotation = 5;
KpDeletion kp_deletion = 6;
AddMissingInstallations add_missing_installations = 7;
}
}

Expand Down Expand Up @@ -52,3 +53,13 @@ message SendSyncArchive {
message ProcessPendingSelfRemove {
bytes group_id = 1;
}

// Durable TaskRunner intent: reconcile a group's membership with the inbox's
// latest identity state (add installations registered after the group was
// last updated). Enqueued by the device-sync worker when a sync-group welcome
// signals a new installation; runs on the TaskRunner with retry/backoff so a
// transient failure (e.g. identity propagation lag) cannot permanently skip
// the add. group_id is the target conversation.
message AddMissingInstallations {
bytes group_id = 1;
}
Loading