diff --git a/src/platform.js b/src/platform.js index e943705cb..71c84e361 100644 --- a/src/platform.js +++ b/src/platform.js @@ -109,7 +109,7 @@ async function markApps(existingInfra, restoreOptions) { reverseProxy.removeAppConfigs(); // should we change the cert location, nginx will not start await apps.configureApps(await apps.list(), { scheduleNow: false }, AuditSource.PLATFORM); // we will schedule it when infra is ready } else { - let changedAddons = []; + const changedAddons = []; if (infra.images.mysql !== existingInfra.images.mysql) changedAddons.push('mysql'); if (infra.images.postgresql !== existingInfra.images.postgresql) changedAddons.push('postgresql'); if (infra.images.mongodb !== existingInfra.images.mongodb) changedAddons.push('mongodb');