1
0
Fork 0
mirror of synced 2024-06-16 09:25:12 +12:00

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

This commit is contained in:
Martin McKeaveney 2021-11-08 15:26:07 +01:00
parent ed051e1547
commit 42e9286c68

View file

@ -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,