Merge pull request #14076 from Budibase/fix/app-migration-queue

App migration queue created consistently
This commit is contained in:
Michael Drury 2024-07-02 17:39:39 +01:00 committed by GitHub
commit 6885ac01f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 19 deletions

View File

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

View File

@ -11,10 +11,9 @@ export type AppMigrationJob = {
appId: string
}
let appMigrationQueue: queue.Queue<AppMigrationJob> | undefined
export function init() {
appMigrationQueue = queue.createQueue<AppMigrationJob>(
// always create app migration queue - so that events can be pushed and read from it
// across the different api and automation services
const appMigrationQueue = queue.createQueue<AppMigrationJob>(
queue.JobQueue.APP_MIGRATION,
{
jobOptions: {
@ -31,6 +30,7 @@ export function init() {
}
)
export function init() {
return appMigrationQueue.process(MIGRATION_CONCURRENCY, processMessage)
}