diff --git a/src/reverseproxy.js b/src/reverseproxy.js index cdc3eb747..fe323754d 100644 --- a/src/reverseproxy.js +++ b/src/reverseproxy.js @@ -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) {