Browse Source

Fix loop early exit

pull/4434/head
Rory Powell 5 years ago
parent
commit
e001376e6d
  1. 2
      packages/backend-core/src/migrations/index.js

2
packages/backend-core/src/migrations/index.js

@ -61,7 +61,7 @@ const runMigration = async (CouchDB, migration, options = {}) => {
)
} else {
// the migration has already been performed
return
continue
}
}

Loading…
Cancel
Save