Fix startup
This commit is contained in:
parent
3258aead45
commit
a293986bd7
|
@ -93,6 +93,7 @@ async function initDeployedApp(prodAppId: any) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function deployApp(deployment: any) {
|
async function deployApp(deployment: any) {
|
||||||
|
let replication
|
||||||
try {
|
try {
|
||||||
const appId = getAppId()
|
const appId = getAppId()
|
||||||
const devAppId = getDevelopmentAppID(appId)
|
const devAppId = getDevelopmentAppID(appId)
|
||||||
|
@ -102,7 +103,7 @@ async function deployApp(deployment: any) {
|
||||||
source: devAppId,
|
source: devAppId,
|
||||||
target: productionAppId,
|
target: productionAppId,
|
||||||
}
|
}
|
||||||
var replication = new Replication(config)
|
replication = new Replication(config)
|
||||||
|
|
||||||
console.log("Replication object created")
|
console.log("Replication object created")
|
||||||
await replication.replicate()
|
await replication.replicate()
|
||||||
|
@ -126,7 +127,9 @@ async function deployApp(deployment: any) {
|
||||||
message: `Deployment Failed: ${err.message}`,
|
message: `Deployment Failed: ${err.message}`,
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
await replication.close()
|
if (replication) {
|
||||||
|
await replication.close()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue