reverseproxy: remove options from renewCerts

This commit is contained in:
Girish Ramakrishnan
2022-11-14 08:13:47 +01:00
parent 5e2a55ecad
commit 0843baad8b
4 changed files with 7 additions and 12 deletions

View File

@@ -148,7 +148,7 @@ async function startJobs() {
// randomized per Cloudron based on hourlySeed
gJobs.certificateRenew = new CronJob({
cronTime: `00 10 ${hour} * * *`,
onTick: async () => await safe(cloudron.renewCerts({}, AuditSource.CRON), { debug }),
onTick: async () => await safe(cloudron.renewCerts(AuditSource.CRON), { debug }),
start: true
});