1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00

Fix app list retrieval in migrations

This commit is contained in:
Rory Powell 2022-02-22 07:49:33 +00:00
parent 46aafb076b
commit 65b0455313

View file

@ -36,7 +36,7 @@ const runMigration = async (CouchDB, migration, options = {}) => {
if (migrationType === exports.MIGRATION_TYPES.GLOBAL) {
dbNames = [getGlobalDBName()]
} else if (migrationType === exports.MIGRATION_TYPES.APP) {
const apps = await getAllApps(CouchDB, migration.opts)
const apps = await getAllApps(migration.opts)
dbNames = apps.map(app => app.appId)
} else {
throw new Error(