Quick change.

This commit is contained in:
mike12345567 2024-07-02 16:59:42 +01:00
parent 39392a793d
commit ac2b87df9e
2 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,6 @@ export async function checkMissingMigrations(
const queue = getAppMigrationQueue()
if (
queue &&
latestMigration &&
getTimestamp(currentVersion) < getTimestamp(latestMigration)
) {

View File

@ -13,7 +13,7 @@ export type AppMigrationJob = {
// always create app migration queue - so that events can be pushed and read from it
// across the different api and automation services
let appMigrationQueue = queue.createQueue<AppMigrationJob>(
const appMigrationQueue = queue.createQueue<AppMigrationJob>(
queue.JobQueue.APP_MIGRATION,
{
jobOptions: {