Making sure any error that occurs in the app migration system gets logged.

This commit is contained in:
mike12345567 2024-06-10 18:32:06 +01:00
parent 8ef4d5cc8b
commit c328dd5cd4
1 changed files with 17 additions and 17 deletions

View File

@ -12,6 +12,7 @@ export async function processMigrations(
migrations: AppMigration[] migrations: AppMigration[]
) { ) {
console.log(`Processing app migration for "${appId}"`) console.log(`Processing app migration for "${appId}"`)
try {
// have to wrap in context, this gets the tenant from the app ID // have to wrap in context, this gets the tenant from the app ID
await context.doInAppContext(appId, async () => { await context.doInAppContext(appId, async () => {
await locks.doWithLock( await locks.doWithLock(
@ -21,7 +22,6 @@ export async function processMigrations(
resource: appId, resource: appId,
}, },
async () => { async () => {
try {
await context.doInAppMigrationContext(appId, async () => { await context.doInAppMigrationContext(appId, async () => {
let currentVersion = await getAppMigrationVersion(appId) let currentVersion = await getAppMigrationVersion(appId)
@ -55,13 +55,13 @@ export async function processMigrations(
currentVersion = id currentVersion = id
} }
}) })
} catch (err) {
logging.logAlert("Failed to run app migration", err)
throw err
}
} }
) )
console.log(`App migration for "${appId}" processed`) console.log(`App migration for "${appId}" processed`)
}) })
} catch (err) {
logging.logAlert("Failed to run app migration", err)
throw err
}
} }