@@ -2106,12 +2106,14 @@ galley:
21062106 teamFeatures: postgresql
21072107 domainRegistration: postgresql
21082108 user: postgresql
2109+ passwordReset: postgresql
21092110background-worker:
21102111 config:
21112112 migrateConversations: false
21122113 migrateConversationCodes: false
21132114 migrateTeamFeatures: false
21142115 migrateDomainRegistration: false
2116+ migratePasswordReset: false
21152117` ` `
21162118
21172119# ### Migration for existing installations
@@ -2142,6 +2144,7 @@ The current settings and their background-worker flags are:
21422144- ` conversationCodes` -> `migrateConversationCodes`
21432145- ` teamFeatures` -> `migrateTeamFeatures`
21442146- ` domainRegistration` -> `migrateDomainRegistration`
2147+ - ` passwordReset` -> `migratePasswordReset`
21452148
21462149**Migration pattern per migration setting**
21472150
@@ -2161,12 +2164,14 @@ The current settings and their background-worker flags are:
21612164 conversationCodes: migration-to-postgresql
21622165 teamFeatures: migration-to-postgresql
21632166 domainRegistration: cassandra
2167+ passwordReset: cassandra
21642168 background-worker:
21652169 config:
21662170 migrateConversations: false
21672171 migrateConversationCodes: false
21682172 migrateTeamFeatures: false
21692173 migrateDomainRegistration: false
2174+ migratePasswordReset: false
21702175 ` ` `
21712176
21722177 This change should restart the affected pods, and new writes will follow the
@@ -2181,6 +2186,7 @@ The current settings and their background-worker flags are:
21812186 migrateConversationCodes: true
21822187 migrateTeamFeatures: true
21832188 migrateDomainRegistration: true
2189+ migratePasswordReset: true
21842190 ` ` `
21852191
21862192 During migration, Cassandra rows are not deleted. Writes and migration share
@@ -2196,6 +2202,7 @@ The current settings and their background-worker flags are:
21962202 - `conversationCodes` : ` wire_conv_codes_migration_finished`
21972203 - `teamFeatures` : ` wire_team_features_migration_finished`
21982204 - `domainRegistration` : ` wire_domain_registration_migration_finished`
2205+ - `passwordReset` : ` wire_password_reset_migration_finished`
21992206
220022073. Cut over reads and writes to PostgreSQL for the selected migration
22012208 setting(s). This configuration must be used from now on for every new
@@ -2209,12 +2216,14 @@ The current settings and their background-worker flags are:
22092216 conversationCodes: postgresql
22102217 teamFeatures: postgresql
22112218 domainRegistration: cassandra
2219+ passwordReset: cassandra
22122220 background-worker:
22132221 config:
22142222 migrateConversations: false
22152223 migrateConversationCodes: false
22162224 migrateTeamFeatures: false
22172225 migrateDomainRegistration: false
2226+ migratePasswordReset: false
22182227 ` ` `
22192228
22202229**How to run migrations independently or in batches**
@@ -2303,6 +2312,7 @@ migrateConversations: false
23032312migrateConversationCodes : false
23042313migrateTeamFeatures : false
23052314migrateDomainRegistration : false
2315+ migratePasswordReset : false
23062316
23072317# migration settings
23082318migrationOptions :
0 commit comments