From 4e39eb89fd194a908959c0642bede50233411856 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 27 Apr 2024 10:48:23 +0200 Subject: [PATCH] const --- src/platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');