1
0
Fork 0
mirror of synced 2024-09-11 15:08:05 +12:00

Wrap admin user creation in a try/catch to provider better info in case of an error

This commit is contained in:
Andrew Kingston 2022-06-30 11:40:52 +01:00
parent f49e2886ca
commit e9d20abb0d

View file

@ -121,6 +121,7 @@ module.exports = server.listen(env.PORT || 0, async () => {
) {
const checklist = await getChecklist()
if (!checklist?.adminUser?.checked) {
try {
await createAdminUser(
env.BB_ADMIN_USER_EMAIL,
env.BB_ADMIN_USER_PASSWORD,
@ -130,6 +131,10 @@ module.exports = server.listen(env.PORT || 0, async () => {
"Admin account automatically created for",
env.BB_ADMIN_USER_EMAIL
)
} catch (e) {
logAlert("Error creating initial admin user. Exiting.", e)
shutdown()
}
}
}