Migrate to new SVR2 enclave.

This commit is contained in:
Greyson Parrelli
2026-01-23 15:58:35 -05:00
parent dab47828c6
commit 01fb0c0eb6
2 changed files with 10 additions and 5 deletions

View File

@@ -191,9 +191,10 @@ public class ApplicationMigrations {
static final int EMOJI_ENGLISH_SEARCH = 147;
static final int AEP_ROTATE_FIX = 148;
static final int ATTACHMENT_HASH_BACKFILL_2 = 149;
static final int SVR2_ENCLAVE_UPDATE_5 = 150;
}
public static final int CURRENT_VERSION = 149;
public static final int CURRENT_VERSION = 150;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -884,6 +885,10 @@ public class ApplicationMigrations {
jobs.put(Version.ATTACHMENT_HASH_BACKFILL_2, new AttachmentHashBackfillMigrationJob());
}
if (lastSeenVersion < Version.SVR2_ENCLAVE_UPDATE_5) {
jobs.put(Version.SVR2_ENCLAVE_UPDATE_5, new Svr2MirrorMigrationJob());
}
return jobs;
}