1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +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) { 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()
}
} }
} }