Browse Source

adding check to make sure production db isn't created on sync

pull/3289/head
Martin McKeaveney 5 years ago
parent
commit
42e9286c68
  1. 13
      packages/server/src/api/controllers/application.js

13
packages/server/src/api/controllers/application.js

@ -329,6 +329,19 @@ exports.sync = async ctx => {
ctx.throw(400, "This action cannot be performed for production apps")
}
const prodAppId = getDeployedAppID(appId)
try {
const prodDb = new CouchDB(prodAppId, { skip_setup: true })
const info = await prodDb.info()
if (info.error) throw info.error
} catch (err) {
// the database doesn't exist. Don't replicate
ctx.body = {
message: "App sync completed successfully.",
}
return
}
const replication = new Replication({
source: prodAppId,
target: appId,

Loading…
Cancel
Save