fix "installRetry" was declared a constant and changed

This commit is contained in:
Andreas Heissenberger 2021-05-03 17:23:27 +02:00
parent 1af21735a9
commit 01888ff078
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ var reinstallTimeout;
function reinstallModules(moduleList) {
const promises = [];
const reinstallList = [];
const installRetry = 30000;
let installRetry = 30000;
if (settings.hasOwnProperty('autoInstallModulesRetry')) {
log.warn(log._("server.deprecatedOption",{old:"autoInstallModulesRetry", new:"externalModules.autoInstallRetry"}));
installRetry = settings.autoInstallModulesRetry;