1
0
Fork 0
mirror of synced 2024-08-10 15:41:24 +12:00

Fix startup

This commit is contained in:
Rory Powell 2022-04-26 16:19:41 +01:00
parent 3258aead45
commit a293986bd7

View file

@ -93,6 +93,7 @@ async function initDeployedApp(prodAppId: any) {
}
async function deployApp(deployment: any) {
let replication
try {
const appId = getAppId()
const devAppId = getDevelopmentAppID(appId)
@ -102,7 +103,7 @@ async function deployApp(deployment: any) {
source: devAppId,
target: productionAppId,
}
var replication = new Replication(config)
replication = new Replication(config)
console.log("Replication object created")
await replication.replicate()
@ -126,7 +127,9 @@ async function deployApp(deployment: any) {
message: `Deployment Failed: ${err.message}`,
}
} finally {
await replication.close()
if (replication) {
await replication.close()
}
}
}