This commit is contained in:
Girish Ramakrishnan
2021-04-27 15:24:51 -07:00
parent cd300bb6e2
commit fe6ee45645

View File

@@ -646,7 +646,7 @@ function renewCerts(options, auditSource, progressCallback, callback) {
let progress = 1, renewed = [];
async.eachSeries(appDomains, function (appDomain, iteratorCallback) {
progressCallback({ percent: progress, message: `Renewing certs of ${appDomain.fqdn}` });
progressCallback({ percent: progress, message: `Ensuring certs of ${appDomain.fqdn}` });
progress += Math.round(100/appDomains.length);
ensureCertificate(appDomain.fqdn, appDomain.domain, auditSource, function (error, bundle, state) {