Skip to content

Commit 943f037

Browse files
committed
Remove warnings about password auth not being feature complete
1 parent 20853a4 commit 943f037

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tools/syn2mas/src/advisor.mts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,6 @@ export async function advisor(): Promise<void> {
192192
warn(
193193
"Synapse has a non-standard password auth enabled which won't work after migration and will need to be manually mapped to an upstream OpenID Provider during migration",
194194
);
195-
} else if (synapseConfig.password_config?.enabled !== false) {
196-
warn(
197-
"Synapse has password auth enabled, but support for password auth in MAS is not feature complete",
198-
);
199195
}
200196

201197
const externalIdAuthProviders = (await synapse
@@ -213,8 +209,8 @@ export async function advisor(): Promise<void> {
213209
synapse.count("*").from<SUser>("users").whereNotNull("password_hash"),
214210
);
215211
if (usersWithPassword > 0) {
216-
warn(
217-
`Synapse database contains ${usersWithPassword} users with a password which will be migrated. However, support for password auth in MAS is not feature complete`,
212+
log.info(
213+
`Synapse database contains ${usersWithPassword} users with a password which will be migrated.`,
218214
);
219215
}
220216

0 commit comments

Comments
 (0)