1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Refresh interval in hours

This commit is contained in:
bartbutenaers 2020-05-29 00:08:07 +02:00 committed by GitHub
parent dec3762b7a
commit 4adcb9c439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,7 +184,7 @@ httpsPromise.then(function(startupHttps) {
} catch(err) {
RED.log.error(RED.log._("server.https.get-failed",{message:err}));
}
}, parseInt(settings.httpsRefreshInterval)*1000);
}, parseInt(settings.httpsRefreshInterval)*60*60*1000);
} else {
delayedLogItems.push({type:"warn", id:"server.https.nodejs-version", params:{}});
}